diff --git a/Source/Bind/CSharpSpecWriter.cs b/Source/Bind/CSharpSpecWriter.cs
index 6f6ab315..f6408605 100644
--- a/Source/Bind/CSharpSpecWriter.cs
+++ b/Source/Bind/CSharpSpecWriter.cs
@@ -168,19 +168,42 @@ namespace Bind
sw.WriteLine("static {0}()", Settings.OutputClass);
sw.WriteLine("{");
sw.Indent();
- sw.WriteLine("EntryPointNames = new string[]", delegates.Count);
+ // Write entry point names.
+ // Instead of strings, which are costly to construct,
+ // we use a 1d array of ASCII bytes. Names are laid out
+ // sequentially, with a nul-terminator between them.
+ sw.WriteLine("EntryPointNames = new byte[]", delegates.Count);
sw.WriteLine("{");
sw.Indent();
foreach (var d in delegates.Values.Select(d => d.First()))
{
if (d.RequiresSlot(Settings))
{
- sw.WriteLine("\"{0}{1}\",", Settings.FunctionPrefix, d.Name);
+ var name = Settings.FunctionPrefix + d.Name;
+ sw.WriteLine("{0}, 0,", String.Join(", ",
+ System.Text.Encoding.ASCII.GetBytes(name).Select(b => b.ToString()).ToArray()));
}
}
sw.Unindent();
sw.WriteLine("};");
- sw.WriteLine("EntryPoints = new IntPtr[EntryPointNames.Length];");
+ // Write entry point name offsets.
+ // This is an array of offsets into the EntryPointNames[] array above.
+ sw.WriteLine("EntryPointNameOffsets = new int[]", delegates.Count);
+ sw.WriteLine("{");
+ sw.Indent();
+ int offset = 0;
+ foreach (var d in delegates.Values.Select(d => d.First()))
+ {
+ if (d.RequiresSlot(Settings))
+ {
+ sw.WriteLine("{0},", offset);
+ var name = Settings.FunctionPrefix + d.Name;
+ offset += name.Length + 1;
+ }
+ }
+ sw.Unindent();
+ sw.WriteLine("};");
+ sw.WriteLine("EntryPoints = new IntPtr[EntryPointNameOffsets.Length];");
sw.Unindent();
sw.WriteLine("}");
sw.WriteLine();
diff --git a/Source/OpenTK/Graphics/ES11/ES11.cs b/Source/OpenTK/Graphics/ES11/ES11.cs
index 2a711117..2d83c102 100644
--- a/Source/OpenTK/Graphics/ES11/ES11.cs
+++ b/Source/OpenTK/Graphics/ES11/ES11.cs
@@ -38,247 +38,487 @@ namespace OpenTK.Graphics.ES11
{
static GL()
{
- EntryPointNames = new string[]
+ EntryPointNames = new byte[]
{
- "glAccumxOES",
- "glAlphaFuncxOES",
- "glBindFramebufferOES",
- "glBindRenderbufferOES",
- "glBindVertexArrayOES",
- "glBitmapxOES",
- "glBlendColorxOES",
- "glBlendEquationEXT",
- "glBlendEquationOES",
- "glBlendEquationSeparateOES",
- "glBlendFuncSeparateOES",
- "glCheckFramebufferStatusOES",
- "glClearAccumxOES",
- "glClearColorxOES",
- "glClearDepthfOES",
- "glClearDepthxOES",
- "glClientWaitSyncAPPLE",
- "glClipPlanefIMG",
- "glClipPlanefOES",
- "glClipPlanexIMG",
- "glClipPlanexOES",
- "glColor3xOES",
- "glColor3xvOES",
- "glColor4xOES",
- "glColor4xvOES",
- "glConvolutionParameterxOES",
- "glConvolutionParameterxvOES",
- "glCopyTextureLevelsAPPLE",
- "glCurrentPaletteMatrixOES",
- "glDeleteFencesNV",
- "glDeleteFramebuffersOES",
- "glDeleteRenderbuffersOES",
- "glDeleteSyncAPPLE",
- "glDeleteVertexArraysOES",
- "glDepthRangefOES",
- "glDepthRangexOES",
- "glDisableDriverControlQCOM",
- "glDiscardFramebufferEXT",
- "glDrawTexfOES",
- "glDrawTexfvOES",
- "glDrawTexiOES",
- "glDrawTexivOES",
- "glDrawTexsOES",
- "glDrawTexsvOES",
- "glDrawTexxOES",
- "glDrawTexxvOES",
- "glEGLImageTargetRenderbufferStorageOES",
- "glEGLImageTargetTexture2DOES",
- "glEnableDriverControlQCOM",
- "glEndTilingQCOM",
- "glEvalCoord1xOES",
- "glEvalCoord1xvOES",
- "glEvalCoord2xOES",
- "glEvalCoord2xvOES",
- "glExtGetBufferPointervQCOM",
- "glExtGetBuffersQCOM",
- "glExtGetFramebuffersQCOM",
- "glExtGetProgramBinarySourceQCOM",
- "glExtGetProgramsQCOM",
- "glExtGetRenderbuffersQCOM",
- "glExtGetShadersQCOM",
- "glExtGetTexLevelParameterivQCOM",
- "glExtGetTexSubImageQCOM",
- "glExtGetTexturesQCOM",
- "glExtIsProgramBinaryQCOM",
- "glExtTexObjectStateOverrideiQCOM",
- "glFeedbackBufferxOES",
- "glFenceSyncAPPLE",
- "glFinishFenceNV",
- "glFlushMappedBufferRangeEXT",
- "glFogxOES",
- "glFogxvOES",
- "glFramebufferRenderbufferOES",
- "glFramebufferTexture2DMultisampleEXT",
- "glFramebufferTexture2DMultisampleIMG",
- "glFramebufferTexture2DOES",
- "glFrustumfOES",
- "glFrustumxOES",
- "glGenerateMipmapOES",
- "glGenFencesNV",
- "glGenFramebuffersOES",
- "glGenRenderbuffersOES",
- "glGenVertexArraysOES",
- "glGetBufferPointervOES",
- "glGetClipPlanefOES",
- "glGetClipPlanexOES",
- "glGetConvolutionParameterxvOES",
- "glGetDriverControlsQCOM",
- "glGetDriverControlStringQCOM",
- "glGetFenceivNV",
- "glGetFixedvOES",
- "glGetFramebufferAttachmentParameterivOES",
- "glGetGraphicsResetStatusEXT",
- "glGetHistogramParameterxvOES",
- "glGetInteger64vAPPLE",
- "glGetLightxOES",
- "glGetLightxvOES",
- "glGetMapxvOES",
- "glGetMaterialxOES",
- "glGetMaterialxvOES",
- "glGetnUniformfvEXT",
- "glGetnUniformivEXT",
- "glGetRenderbufferParameterivOES",
- "glGetSyncivAPPLE",
- "glGetTexEnvxvOES",
- "glGetTexGenfvOES",
- "glGetTexGenivOES",
- "glGetTexGenxvOES",
- "glGetTexLevelParameterxvOES",
- "glGetTexParameterxvOES",
- "glIndexxOES",
- "glIndexxvOES",
- "glIsFenceNV",
- "glIsFramebufferOES",
- "glIsRenderbufferOES",
- "glIsSyncAPPLE",
- "glIsVertexArrayOES",
- "glLightModelxOES",
- "glLightModelxvOES",
- "glLightxOES",
- "glLightxvOES",
- "glLineWidthxOES",
- "glLoadMatrixxOES",
- "glLoadPaletteFromModelViewMatrixOES",
- "glLoadTransposeMatrixxOES",
- "glMap1xOES",
- "glMap2xOES",
- "glMapBufferOES",
- "glMapBufferRangeEXT",
- "glMapGrid1xOES",
- "glMapGrid2xOES",
- "glMaterialxOES",
- "glMaterialxvOES",
- "glMatrixIndexPointerOES",
- "glMultiDrawArraysEXT",
- "glMultiDrawElementsEXT",
- "glMultiTexCoord1bOES",
- "glMultiTexCoord1bvOES",
- "glMultiTexCoord1xOES",
- "glMultiTexCoord1xvOES",
- "glMultiTexCoord2bOES",
- "glMultiTexCoord2bvOES",
- "glMultiTexCoord2xOES",
- "glMultiTexCoord2xvOES",
- "glMultiTexCoord3bOES",
- "glMultiTexCoord3bvOES",
- "glMultiTexCoord3xOES",
- "glMultiTexCoord3xvOES",
- "glMultiTexCoord4bOES",
- "glMultiTexCoord4bvOES",
- "glMultiTexCoord4xOES",
- "glMultiTexCoord4xvOES",
- "glMultMatrixxOES",
- "glMultTransposeMatrixxOES",
- "glNormal3xOES",
- "glNormal3xvOES",
- "glOrthofOES",
- "glOrthoxOES",
- "glPassThroughxOES",
- "glPixelTransferxOES",
- "glPixelZoomxOES",
- "glPointParameterxOES",
- "glPointParameterxvOES",
- "glPointSizePointerOES",
- "glPointSizexOES",
- "glPolygonOffsetxOES",
- "glPrioritizeTexturesxOES",
- "glQueryMatrixxOES",
- "glRasterPos2xOES",
- "glRasterPos2xvOES",
- "glRasterPos3xOES",
- "glRasterPos3xvOES",
- "glRasterPos4xOES",
- "glRasterPos4xvOES",
- "glReadnPixelsEXT",
- "glRectxOES",
- "glRectxvOES",
- "glRenderbufferStorageMultisampleAPPLE",
- "glRenderbufferStorageMultisampleEXT",
- "glRenderbufferStorageMultisampleIMG",
- "glRenderbufferStorageOES",
- "glResolveMultisampleFramebufferAPPLE",
- "glRotatexOES",
- "glSampleCoverageOES",
- "glSampleCoveragexOES",
- "glScalexOES",
- "glSetFenceNV",
- "glStartTilingQCOM",
- "glTestFenceNV",
- "glTexCoord1bOES",
- "glTexCoord1bvOES",
- "glTexCoord1xOES",
- "glTexCoord1xvOES",
- "glTexCoord2bOES",
- "glTexCoord2bvOES",
- "glTexCoord2xOES",
- "glTexCoord2xvOES",
- "glTexCoord3bOES",
- "glTexCoord3bvOES",
- "glTexCoord3xOES",
- "glTexCoord3xvOES",
- "glTexCoord4bOES",
- "glTexCoord4bvOES",
- "glTexCoord4xOES",
- "glTexCoord4xvOES",
- "glTexEnvxOES",
- "glTexEnvxvOES",
- "glTexGenfOES",
- "glTexGenfvOES",
- "glTexGeniOES",
- "glTexGenivOES",
- "glTexGenxOES",
- "glTexGenxvOES",
- "glTexParameterxOES",
- "glTexParameterxvOES",
- "glTexStorage1DEXT",
- "glTexStorage2DEXT",
- "glTexStorage3DEXT",
- "glTextureStorage1DEXT",
- "glTextureStorage2DEXT",
- "glTextureStorage3DEXT",
- "glTranslatexOES",
- "glUnmapBufferOES",
- "glVertex2bOES",
- "glVertex2bvOES",
- "glVertex2xOES",
- "glVertex2xvOES",
- "glVertex3bOES",
- "glVertex3bvOES",
- "glVertex3xOES",
- "glVertex3xvOES",
- "glVertex4bOES",
- "glVertex4bvOES",
- "glVertex4xOES",
- "glVertex4xvOES",
- "glWaitSyncAPPLE",
- "glWeightPointerOES",
+ 103, 108, 65, 99, 99, 117, 109, 120, 79, 69, 83, 0,
+ 103, 108, 65, 108, 112, 104, 97, 70, 117, 110, 99, 120, 79, 69, 83, 0,
+ 103, 108, 66, 105, 110, 100, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 66, 105, 110, 100, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 66, 105, 110, 100, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 79, 69, 83, 0,
+ 103, 108, 66, 105, 116, 109, 97, 112, 120, 79, 69, 83, 0,
+ 103, 108, 66, 108, 101, 110, 100, 67, 111, 108, 111, 114, 120, 79, 69, 83, 0,
+ 103, 108, 66, 108, 101, 110, 100, 69, 113, 117, 97, 116, 105, 111, 110, 69, 88, 84, 0,
+ 103, 108, 66, 108, 101, 110, 100, 69, 113, 117, 97, 116, 105, 111, 110, 79, 69, 83, 0,
+ 103, 108, 66, 108, 101, 110, 100, 69, 113, 117, 97, 116, 105, 111, 110, 83, 101, 112, 97, 114, 97, 116, 101, 79, 69, 83, 0,
+ 103, 108, 66, 108, 101, 110, 100, 70, 117, 110, 99, 83, 101, 112, 97, 114, 97, 116, 101, 79, 69, 83, 0,
+ 103, 108, 67, 104, 101, 99, 107, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 83, 116, 97, 116, 117, 115, 79, 69, 83, 0,
+ 103, 108, 67, 108, 101, 97, 114, 65, 99, 99, 117, 109, 120, 79, 69, 83, 0,
+ 103, 108, 67, 108, 101, 97, 114, 67, 111, 108, 111, 114, 120, 79, 69, 83, 0,
+ 103, 108, 67, 108, 101, 97, 114, 68, 101, 112, 116, 104, 102, 79, 69, 83, 0,
+ 103, 108, 67, 108, 101, 97, 114, 68, 101, 112, 116, 104, 120, 79, 69, 83, 0,
+ 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 67, 108, 105, 112, 80, 108, 97, 110, 101, 102, 73, 77, 71, 0,
+ 103, 108, 67, 108, 105, 112, 80, 108, 97, 110, 101, 102, 79, 69, 83, 0,
+ 103, 108, 67, 108, 105, 112, 80, 108, 97, 110, 101, 120, 73, 77, 71, 0,
+ 103, 108, 67, 108, 105, 112, 80, 108, 97, 110, 101, 120, 79, 69, 83, 0,
+ 103, 108, 67, 111, 108, 111, 114, 51, 120, 79, 69, 83, 0,
+ 103, 108, 67, 111, 108, 111, 114, 51, 120, 118, 79, 69, 83, 0,
+ 103, 108, 67, 111, 108, 111, 114, 52, 120, 79, 69, 83, 0,
+ 103, 108, 67, 111, 108, 111, 114, 52, 120, 118, 79, 69, 83, 0,
+ 103, 108, 67, 111, 110, 118, 111, 108, 117, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 79, 69, 83, 0,
+ 103, 108, 67, 111, 110, 118, 111, 108, 117, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 67, 111, 112, 121, 84, 101, 120, 116, 117, 114, 101, 76, 101, 118, 101, 108, 115, 65, 80, 80, 76, 69, 0,
+ 103, 108, 67, 117, 114, 114, 101, 110, 116, 80, 97, 108, 101, 116, 116, 101, 77, 97, 116, 114, 105, 120, 79, 69, 83, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 70, 101, 110, 99, 101, 115, 78, 86, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 115, 79, 69, 83, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 79, 69, 83, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 115, 79, 69, 83, 0,
+ 103, 108, 68, 101, 112, 116, 104, 82, 97, 110, 103, 101, 102, 79, 69, 83, 0,
+ 103, 108, 68, 101, 112, 116, 104, 82, 97, 110, 103, 101, 120, 79, 69, 83, 0,
+ 103, 108, 68, 105, 115, 97, 98, 108, 101, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 81, 67, 79, 77, 0,
+ 103, 108, 68, 105, 115, 99, 97, 114, 100, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 69, 88, 84, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 102, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 102, 118, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 105, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 105, 118, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 115, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 115, 118, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 120, 79, 69, 83, 0,
+ 103, 108, 68, 114, 97, 119, 84, 101, 120, 120, 118, 79, 69, 83, 0,
+ 103, 108, 69, 71, 76, 73, 109, 97, 103, 101, 84, 97, 114, 103, 101, 116, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 79, 69, 83, 0,
+ 103, 108, 69, 71, 76, 73, 109, 97, 103, 101, 84, 97, 114, 103, 101, 116, 84, 101, 120, 116, 117, 114, 101, 50, 68, 79, 69, 83, 0,
+ 103, 108, 69, 110, 97, 98, 108, 101, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 81, 67, 79, 77, 0,
+ 103, 108, 69, 110, 100, 84, 105, 108, 105, 110, 103, 81, 67, 79, 77, 0,
+ 103, 108, 69, 118, 97, 108, 67, 111, 111, 114, 100, 49, 120, 79, 69, 83, 0,
+ 103, 108, 69, 118, 97, 108, 67, 111, 111, 114, 100, 49, 120, 118, 79, 69, 83, 0,
+ 103, 108, 69, 118, 97, 108, 67, 111, 111, 114, 100, 50, 120, 79, 69, 83, 0,
+ 103, 108, 69, 118, 97, 108, 67, 111, 111, 114, 100, 50, 120, 118, 79, 69, 83, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 66, 117, 102, 102, 101, 114, 80, 111, 105, 110, 116, 101, 114, 118, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 66, 117, 102, 102, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 66, 105, 110, 97, 114, 121, 83, 111, 117, 114, 99, 101, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 83, 104, 97, 100, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 84, 101, 120, 76, 101, 118, 101, 108, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 84, 101, 120, 116, 117, 114, 101, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 73, 115, 80, 114, 111, 103, 114, 97, 109, 66, 105, 110, 97, 114, 121, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 84, 101, 120, 79, 98, 106, 101, 99, 116, 83, 116, 97, 116, 101, 79, 118, 101, 114, 114, 105, 100, 101, 105, 81, 67, 79, 77, 0,
+ 103, 108, 70, 101, 101, 100, 98, 97, 99, 107, 66, 117, 102, 102, 101, 114, 120, 79, 69, 83, 0,
+ 103, 108, 70, 101, 110, 99, 101, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 70, 105, 110, 105, 115, 104, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 70, 108, 117, 115, 104, 77, 97, 112, 112, 101, 100, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0,
+ 103, 108, 70, 111, 103, 120, 79, 69, 83, 0,
+ 103, 108, 70, 111, 103, 120, 118, 79, 69, 83, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 84, 101, 120, 116, 117, 114, 101, 50, 68, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 69, 88, 84, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 84, 101, 120, 116, 117, 114, 101, 50, 68, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 73, 77, 71, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 84, 101, 120, 116, 117, 114, 101, 50, 68, 79, 69, 83, 0,
+ 103, 108, 70, 114, 117, 115, 116, 117, 109, 102, 79, 69, 83, 0,
+ 103, 108, 70, 114, 117, 115, 116, 117, 109, 120, 79, 69, 83, 0,
+ 103, 108, 71, 101, 110, 101, 114, 97, 116, 101, 77, 105, 112, 109, 97, 112, 79, 69, 83, 0,
+ 103, 108, 71, 101, 110, 70, 101, 110, 99, 101, 115, 78, 86, 0,
+ 103, 108, 71, 101, 110, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 115, 79, 69, 83, 0,
+ 103, 108, 71, 101, 110, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 79, 69, 83, 0,
+ 103, 108, 71, 101, 110, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 115, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 66, 117, 102, 102, 101, 114, 80, 111, 105, 110, 116, 101, 114, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 67, 108, 105, 112, 80, 108, 97, 110, 101, 102, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 67, 108, 105, 112, 80, 108, 97, 110, 101, 120, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 67, 111, 110, 118, 111, 108, 117, 116, 105, 111, 110, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 115, 81, 67, 79, 77, 0,
+ 103, 108, 71, 101, 116, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 83, 116, 114, 105, 110, 103, 81, 67, 79, 77, 0,
+ 103, 108, 71, 101, 116, 70, 101, 110, 99, 101, 105, 118, 78, 86, 0,
+ 103, 108, 71, 101, 116, 70, 105, 120, 101, 100, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 65, 116, 116, 97, 99, 104, 109, 101, 110, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 71, 114, 97, 112, 104, 105, 99, 115, 82, 101, 115, 101, 116, 83, 116, 97, 116, 117, 115, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 72, 105, 115, 116, 111, 103, 114, 97, 109, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 73, 110, 116, 101, 103, 101, 114, 54, 52, 118, 65, 80, 80, 76, 69, 0,
+ 103, 108, 71, 101, 116, 76, 105, 103, 104, 116, 120, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 76, 105, 103, 104, 116, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 77, 97, 112, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 77, 97, 116, 101, 114, 105, 97, 108, 120, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 77, 97, 116, 101, 114, 105, 97, 108, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 110, 85, 110, 105, 102, 111, 114, 109, 102, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 110, 85, 110, 105, 102, 111, 114, 109, 105, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 83, 121, 110, 99, 105, 118, 65, 80, 80, 76, 69, 0,
+ 103, 108, 71, 101, 116, 84, 101, 120, 69, 110, 118, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 84, 101, 120, 71, 101, 110, 102, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 84, 101, 120, 71, 101, 110, 105, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 84, 101, 120, 71, 101, 110, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 84, 101, 120, 76, 101, 118, 101, 108, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 84, 101, 120, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 73, 110, 100, 101, 120, 120, 79, 69, 83, 0,
+ 103, 108, 73, 110, 100, 101, 120, 120, 118, 79, 69, 83, 0,
+ 103, 108, 73, 115, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 73, 115, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 73, 115, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 73, 115, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 73, 115, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 79, 69, 83, 0,
+ 103, 108, 76, 105, 103, 104, 116, 77, 111, 100, 101, 108, 120, 79, 69, 83, 0,
+ 103, 108, 76, 105, 103, 104, 116, 77, 111, 100, 101, 108, 120, 118, 79, 69, 83, 0,
+ 103, 108, 76, 105, 103, 104, 116, 120, 79, 69, 83, 0,
+ 103, 108, 76, 105, 103, 104, 116, 120, 118, 79, 69, 83, 0,
+ 103, 108, 76, 105, 110, 101, 87, 105, 100, 116, 104, 120, 79, 69, 83, 0,
+ 103, 108, 76, 111, 97, 100, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0,
+ 103, 108, 76, 111, 97, 100, 80, 97, 108, 101, 116, 116, 101, 70, 114, 111, 109, 77, 111, 100, 101, 108, 86, 105, 101, 119, 77, 97, 116, 114, 105, 120, 79, 69, 83, 0,
+ 103, 108, 76, 111, 97, 100, 84, 114, 97, 110, 115, 112, 111, 115, 101, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0,
+ 103, 108, 77, 97, 112, 49, 120, 79, 69, 83, 0,
+ 103, 108, 77, 97, 112, 50, 120, 79, 69, 83, 0,
+ 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0,
+ 103, 108, 77, 97, 112, 71, 114, 105, 100, 49, 120, 79, 69, 83, 0,
+ 103, 108, 77, 97, 112, 71, 114, 105, 100, 50, 120, 79, 69, 83, 0,
+ 103, 108, 77, 97, 116, 101, 114, 105, 97, 108, 120, 79, 69, 83, 0,
+ 103, 108, 77, 97, 116, 101, 114, 105, 97, 108, 120, 118, 79, 69, 83, 0,
+ 103, 108, 77, 97, 116, 114, 105, 120, 73, 110, 100, 101, 120, 80, 111, 105, 110, 116, 101, 114, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 69, 88, 84, 0,
+ 103, 108, 77, 117, 108, 116, 105, 68, 114, 97, 119, 69, 108, 101, 109, 101, 110, 116, 115, 69, 88, 84, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 49, 98, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 49, 98, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 49, 120, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 49, 120, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 50, 98, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 50, 98, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 50, 120, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 50, 120, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 51, 98, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 51, 98, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 51, 120, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 51, 120, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 52, 98, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 52, 98, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 52, 120, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 105, 84, 101, 120, 67, 111, 111, 114, 100, 52, 120, 118, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0,
+ 103, 108, 77, 117, 108, 116, 84, 114, 97, 110, 115, 112, 111, 115, 101, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0,
+ 103, 108, 78, 111, 114, 109, 97, 108, 51, 120, 79, 69, 83, 0,
+ 103, 108, 78, 111, 114, 109, 97, 108, 51, 120, 118, 79, 69, 83, 0,
+ 103, 108, 79, 114, 116, 104, 111, 102, 79, 69, 83, 0,
+ 103, 108, 79, 114, 116, 104, 111, 120, 79, 69, 83, 0,
+ 103, 108, 80, 97, 115, 115, 84, 104, 114, 111, 117, 103, 104, 120, 79, 69, 83, 0,
+ 103, 108, 80, 105, 120, 101, 108, 84, 114, 97, 110, 115, 102, 101, 114, 120, 79, 69, 83, 0,
+ 103, 108, 80, 105, 120, 101, 108, 90, 111, 111, 109, 120, 79, 69, 83, 0,
+ 103, 108, 80, 111, 105, 110, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 79, 69, 83, 0,
+ 103, 108, 80, 111, 105, 110, 116, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 80, 111, 105, 110, 116, 83, 105, 122, 101, 80, 111, 105, 110, 116, 101, 114, 79, 69, 83, 0,
+ 103, 108, 80, 111, 105, 110, 116, 83, 105, 122, 101, 120, 79, 69, 83, 0,
+ 103, 108, 80, 111, 108, 121, 103, 111, 110, 79, 102, 102, 115, 101, 116, 120, 79, 69, 83, 0,
+ 103, 108, 80, 114, 105, 111, 114, 105, 116, 105, 122, 101, 84, 101, 120, 116, 117, 114, 101, 115, 120, 79, 69, 83, 0,
+ 103, 108, 81, 117, 101, 114, 121, 77, 97, 116, 114, 105, 120, 120, 79, 69, 83, 0,
+ 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 50, 120, 79, 69, 83, 0,
+ 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 50, 120, 118, 79, 69, 83, 0,
+ 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 51, 120, 79, 69, 83, 0,
+ 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 51, 120, 118, 79, 69, 83, 0,
+ 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 52, 120, 79, 69, 83, 0,
+ 103, 108, 82, 97, 115, 116, 101, 114, 80, 111, 115, 52, 120, 118, 79, 69, 83, 0,
+ 103, 108, 82, 101, 97, 100, 110, 80, 105, 120, 101, 108, 115, 69, 88, 84, 0,
+ 103, 108, 82, 101, 99, 116, 120, 79, 69, 83, 0,
+ 103, 108, 82, 101, 99, 116, 120, 118, 79, 69, 83, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 65, 80, 80, 76, 69, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 69, 88, 84, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 73, 77, 71, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 79, 69, 83, 0,
+ 103, 108, 82, 101, 115, 111, 108, 118, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 65, 80, 80, 76, 69, 0,
+ 103, 108, 82, 111, 116, 97, 116, 101, 120, 79, 69, 83, 0,
+ 103, 108, 83, 97, 109, 112, 108, 101, 67, 111, 118, 101, 114, 97, 103, 101, 79, 69, 83, 0,
+ 103, 108, 83, 97, 109, 112, 108, 101, 67, 111, 118, 101, 114, 97, 103, 101, 120, 79, 69, 83, 0,
+ 103, 108, 83, 99, 97, 108, 101, 120, 79, 69, 83, 0,
+ 103, 108, 83, 101, 116, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 83, 116, 97, 114, 116, 84, 105, 108, 105, 110, 103, 81, 67, 79, 77, 0,
+ 103, 108, 84, 101, 115, 116, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 49, 98, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 49, 98, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 49, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 49, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 50, 98, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 50, 98, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 50, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 50, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 51, 98, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 51, 98, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 51, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 51, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 52, 98, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 52, 98, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 52, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 67, 111, 111, 114, 100, 52, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 69, 110, 118, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 69, 110, 118, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 71, 101, 110, 102, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 71, 101, 110, 102, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 71, 101, 110, 105, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 71, 101, 110, 105, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 71, 101, 110, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 71, 101, 110, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 80, 97, 114, 97, 109, 101, 116, 101, 114, 120, 118, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0,
+ 103, 108, 84, 114, 97, 110, 115, 108, 97, 116, 101, 120, 79, 69, 83, 0,
+ 103, 108, 85, 110, 109, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 50, 98, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 50, 98, 118, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 50, 120, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 50, 120, 118, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 51, 98, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 51, 98, 118, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 51, 120, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 51, 120, 118, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 52, 98, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 52, 98, 118, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 52, 120, 79, 69, 83, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 52, 120, 118, 79, 69, 83, 0,
+ 103, 108, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 87, 101, 105, 103, 104, 116, 80, 111, 105, 110, 116, 101, 114, 79, 69, 83, 0,
};
- EntryPoints = new IntPtr[EntryPointNames.Length];
+ EntryPointNameOffsets = new int[]
+ {
+ 0,
+ 12,
+ 28,
+ 49,
+ 71,
+ 92,
+ 105,
+ 122,
+ 141,
+ 160,
+ 187,
+ 210,
+ 238,
+ 255,
+ 272,
+ 289,
+ 306,
+ 328,
+ 344,
+ 360,
+ 376,
+ 392,
+ 405,
+ 419,
+ 432,
+ 446,
+ 473,
+ 501,
+ 526,
+ 552,
+ 569,
+ 593,
+ 618,
+ 636,
+ 660,
+ 677,
+ 694,
+ 721,
+ 745,
+ 759,
+ 774,
+ 788,
+ 803,
+ 817,
+ 832,
+ 846,
+ 861,
+ 900,
+ 929,
+ 955,
+ 971,
+ 988,
+ 1006,
+ 1023,
+ 1041,
+ 1068,
+ 1088,
+ 1113,
+ 1145,
+ 1166,
+ 1192,
+ 1212,
+ 1244,
+ 1268,
+ 1289,
+ 1314,
+ 1347,
+ 1368,
+ 1385,
+ 1401,
+ 1429,
+ 1439,
+ 1450,
+ 1479,
+ 1516,
+ 1553,
+ 1579,
+ 1593,
+ 1607,
+ 1627,
+ 1641,
+ 1662,
+ 1684,
+ 1705,
+ 1728,
+ 1747,
+ 1766,
+ 1797,
+ 1821,
+ 1850,
+ 1865,
+ 1880,
+ 1921,
+ 1949,
+ 1978,
+ 1999,
+ 2014,
+ 2030,
+ 2044,
+ 2062,
+ 2081,
+ 2100,
+ 2119,
+ 2151,
+ 2168,
+ 2185,
+ 2202,
+ 2219,
+ 2236,
+ 2264,
+ 2287,
+ 2299,
+ 2312,
+ 2324,
+ 2343,
+ 2363,
+ 2377,
+ 2396,
+ 2413,
+ 2431,
+ 2443,
+ 2456,
+ 2472,
+ 2489,
+ 2525,
+ 2551,
+ 2562,
+ 2573,
+ 2588,
+ 2608,
+ 2623,
+ 2638,
+ 2653,
+ 2669,
+ 2693,
+ 2714,
+ 2737,
+ 2758,
+ 2780,
+ 2801,
+ 2823,
+ 2844,
+ 2866,
+ 2887,
+ 2909,
+ 2930,
+ 2952,
+ 2973,
+ 2995,
+ 3016,
+ 3038,
+ 3059,
+ 3081,
+ 3098,
+ 3124,
+ 3138,
+ 3153,
+ 3165,
+ 3177,
+ 3195,
+ 3215,
+ 3231,
+ 3252,
+ 3274,
+ 3296,
+ 3312,
+ 3332,
+ 3357,
+ 3375,
+ 3392,
+ 3410,
+ 3427,
+ 3445,
+ 3462,
+ 3480,
+ 3497,
+ 3508,
+ 3520,
+ 3558,
+ 3594,
+ 3630,
+ 3655,
+ 3692,
+ 3705,
+ 3725,
+ 3746,
+ 3758,
+ 3771,
+ 3789,
+ 3803,
+ 3819,
+ 3836,
+ 3852,
+ 3869,
+ 3885,
+ 3902,
+ 3918,
+ 3935,
+ 3951,
+ 3968,
+ 3984,
+ 4001,
+ 4017,
+ 4034,
+ 4050,
+ 4067,
+ 4080,
+ 4094,
+ 4107,
+ 4121,
+ 4134,
+ 4148,
+ 4161,
+ 4175,
+ 4194,
+ 4214,
+ 4232,
+ 4250,
+ 4268,
+ 4290,
+ 4312,
+ 4334,
+ 4350,
+ 4367,
+ 4381,
+ 4396,
+ 4410,
+ 4425,
+ 4439,
+ 4454,
+ 4468,
+ 4483,
+ 4497,
+ 4512,
+ 4526,
+ 4541,
+ 4557,
+ };
+ EntryPoints = new IntPtr[EntryPointNameOffsets.Length];
}
public static partial class Apple
@@ -286,20 +526,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Block and wait for a sync object to become signaled
///
- ///
- ///
+ ///
/// The sync object whose status to wait on.
- ///
///
- ///
- ///
- /// A bitfield controlling the command flushing behavior. flags may be GL_SYNC_FLUSH_COMMANDS_BIT.
- ///
+ ///
+ /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit.
///
- ///
- ///
+ ///
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
[CLSCompliant(false)]
@@ -308,31 +542,33 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Block and wait for a sync object to become signaled
///
- ///
- ///
+ ///
/// The sync object whose status to wait on.
- ///
///
- ///
- ///
- /// A bitfield controlling the command flushing behavior. flags may be GL_SYNC_FLUSH_COMMANDS_BIT.
- ///
+ ///
+ /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit.
///
- ///
- ///
+ ///
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
[CLSCompliant(false)]
public static OpenTK.Graphics.ES11.All ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); }
/// [requires: APPLE_copy_texture_levels]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")]
[CLSCompliant(false)]
public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); }
/// [requires: APPLE_copy_texture_levels]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")]
[CLSCompliant(false)]
public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); }
@@ -340,10 +576,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Delete a sync object
///
- ///
- ///
+ ///
/// The sync object to be deleted.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")]
public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); }
@@ -351,15 +585,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Create a new sync object and insert it into the GL command stream
///
- ///
- ///
- /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be GL_SYNC_GPU_COMMANDS_COMPLETE.
- ///
+ ///
+ /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete.
///
- ///
- ///
- /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero. flags is a placeholder for anticipated future extensions of fence sync object capabilities.
- ///
+ ///
+ /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")]
[CLSCompliant(false)]
@@ -368,36 +598,39 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Create a new sync object and insert it into the GL command stream
///
- ///
- ///
- /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be GL_SYNC_GPU_COMMANDS_COMPLETE.
- ///
+ ///
+ /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete.
///
- ///
- ///
- /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero. flags is a placeholder for anticipated future extensions of fence sync object capabilities.
- ///
+ ///
+ /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")]
[CLSCompliant(false)]
public static IntPtr FenceSync(OpenTK.Graphics.ES11.All condition, UInt32 flags) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static Int64 GetInteger64(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static unsafe void GetInteger64(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); }
@@ -405,30 +638,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
[CLSCompliant(false)]
@@ -437,30 +660,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
[CLSCompliant(false)]
@@ -469,30 +682,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
[CLSCompliant(false)]
@@ -501,10 +704,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Determine if a name corresponds to a sync object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a sync object.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")]
public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); }
@@ -512,30 +713,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_framebuffer_multisample]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")]
public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -547,20 +738,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Instruct the GL server to block until the specified sync object becomes signaled
///
- ///
- ///
+ ///
/// Specifies the sync object whose status to wait on.
- ///
///
- ///
- ///
+ ///
/// A bitfield controlling the command flushing behavior. flags may be zero.
- ///
///
- ///
- ///
- /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
- ///
+ ///
+ /// Specifies the timeout that the server should wait before continuing. timeout must be TimeoutIgnored.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
[CLSCompliant(false)]
@@ -569,20 +754,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: APPLE_sync]
/// Instruct the GL server to block until the specified sync object becomes signaled
///
- ///
- ///
+ ///
/// Specifies the sync object whose status to wait on.
- ///
///
- ///
- ///
+ ///
/// A bitfield controlling the command flushing behavior. flags may be zero.
- ///
///
- ///
- ///
- /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
- ///
+ ///
+ /// Specifies the timeout that the server should wait before continuing. timeout must be TimeoutIgnored.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
[CLSCompliant(false)]
@@ -593,10 +772,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Select active texture unit
///
- ///
- ///
- /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of GL_TEXTUREi, where i ranges from zero to the value of GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS minus one. The initial value is GL_TEXTURE0.
- ///
+ ///
+ /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glActiveTexture")]
@@ -605,10 +782,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Select active texture unit
///
- ///
- ///
- /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of GL_TEXTUREi, where i ranges from zero to the value of GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS minus one. The initial value is GL_TEXTURE0.
- ///
+ ///
+ /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glActiveTexture")]
public static void ActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new NotImplementedException(); }
@@ -616,15 +791,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify the alpha test function
///
- ///
- ///
- /// Specifies the alpha comparison function. Symbolic constants GL_NEVER, GL_LESS, GL_EQUAL, GL_LEQUAL, GL_GREATER, GL_NOTEQUAL, GL_GEQUAL, and GL_ALWAYS are accepted. The initial value is GL_ALWAYS.
- ///
+ ///
+ /// Specifies the alpha comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Always.
///
- ///
- ///
+ ///
/// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")]
@@ -633,35 +804,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify the alpha test function
///
- ///
- ///
- /// Specifies the alpha comparison function. Symbolic constants GL_NEVER, GL_LESS, GL_EQUAL, GL_LEQUAL, GL_GREATER, GL_NOTEQUAL, GL_GEQUAL, and GL_ALWAYS are accepted. The initial value is GL_ALWAYS.
- ///
+ ///
+ /// Specifies the alpha comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Always.
///
- ///
- ///
+ ///
/// Specifies the reference value that incoming alpha values are compared to. This value is clamped to the range [0,1], where 0 represents the lowest possible alpha value and 1 the highest possible value. The initial reference value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFunc")]
public static void AlphaFunc(OpenTK.Graphics.ES11.AlphaFunction func, Single @ref) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glAlphaFuncx")]
public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, int @ref) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Bind a named buffer object
///
- ///
- ///
- /// Specifies the target to which the buffer object is bound. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target to which the buffer object is bound. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the name of a buffer object.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")]
[CLSCompliant(false)]
@@ -670,15 +835,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Bind a named buffer object
///
- ///
- ///
- /// Specifies the target to which the buffer object is bound. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target to which the buffer object is bound. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the name of a buffer object.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindBuffer")]
[CLSCompliant(false)]
@@ -687,15 +848,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")]
@@ -705,15 +862,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")]
@@ -723,15 +876,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")]
[CLSCompliant(false)]
@@ -740,15 +889,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")]
[CLSCompliant(false)]
@@ -757,20 +902,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify pixel arithmetic
///
- ///
- ///
- /// For glBlendFunci, specifies the index of the draw buffer for which to set the blend function.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBlendFunc")]
@@ -779,72 +915,47 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify pixel arithmetic
///
- ///
- ///
- /// For glBlendFunci, specifies the index of the draw buffer for which to set the blend function.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBlendFunc")]
public static void BlendFunc(OpenTK.Graphics.ES11.BlendingFactorSrc sfactor, OpenTK.Graphics.ES11.BlendingFactorDest dfactor) { throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Creates and initializes a buffer object's data store
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")]
public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, IntPtr data, OpenTK.Graphics.ES11.All usage) { throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Creates and initializes a buffer object's data store
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")]
[CLSCompliant(false)]
@@ -853,27 +964,19 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Creates and initializes a buffer object's data store
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")]
[CLSCompliant(false)]
@@ -882,27 +985,19 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Creates and initializes a buffer object's data store
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")]
[CLSCompliant(false)]
@@ -911,27 +1006,19 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Creates and initializes a buffer object's data store
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferData")]
public static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.ES11.All usage)
@@ -939,53 +1026,37 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Updates a subset of a buffer object's data store
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")]
public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Updates a subset of a buffer object's data store
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")]
[CLSCompliant(false)]
@@ -994,27 +1065,19 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Updates a subset of a buffer object's data store
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")]
[CLSCompliant(false)]
@@ -1023,27 +1086,19 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Updates a subset of a buffer object's data store
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")]
[CLSCompliant(false)]
@@ -1052,27 +1107,19 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Updates a subset of a buffer object's data store
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBufferSubData")]
public static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data)
@@ -1082,10 +1129,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Clear buffers to preset values
///
- ///
- ///
- /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")]
@@ -1094,10 +1139,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Clear buffers to preset values
///
- ///
- ///
- /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")]
public static void Clear(OpenTK.Graphics.ES11.ClearBufferMask mask) { throw new NotImplementedException(); }
@@ -1105,10 +1148,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Clear buffers to preset values
///
- ///
- ///
- /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit.
///
[Obsolete("Use ClearMask overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClear")]
@@ -1117,40 +1158,48 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify clear values for the color buffers
///
- ///
- ///
+ ///
+ /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
+ ///
+ ///
+ /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
+ ///
+ ///
+ /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
+ ///
+ ///
/// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearColor")]
public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearColorx")]
public static void ClearColorx(int red, int green, int blue, int alpha) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Specify the clear value for the depth buffer
///
- ///
- ///
+ ///
/// Specifies the depth value used when the depth buffer is cleared. The initial value is 1.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearDepthf")]
public static void ClearDepth(Single d) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearDepthx")]
public static void ClearDepthx(int depth) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Specify the clear value for the stencil buffer
///
- ///
- ///
+ ///
/// Specifies the index used when the stencil buffer is cleared. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClearStencil")]
public static void ClearStencil(Int32 s) { throw new NotImplementedException(); }
@@ -1158,10 +1207,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Select active texture unit
///
- ///
- ///
- /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of GL_TEXTURE, where i ranges from 0 to the value of GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value. The initial value is GL_TEXTURE0.
- ///
+ ///
+ /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClientActiveTexture")]
@@ -1170,10 +1217,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Select active texture unit
///
- ///
- ///
- /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of GL_TEXTURE, where i ranges from 0 to the value of GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value. The initial value is GL_TEXTURE0.
- ///
+ ///
+ /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least two. texture must be one of Texture, where i ranges from 0 to the value of MaxTextureCoords - 1, which is an implementation-dependent value. The initial value is Texture0.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClientActiveTexture")]
public static void ClientActiveTexture(OpenTK.Graphics.ES11.TextureUnit texture) { throw new NotImplementedException(); }
@@ -1181,15 +1226,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- ///
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")]
[CLSCompliant(false)]
@@ -1198,15 +1239,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- ///
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")]
[CLSCompliant(false)]
@@ -1215,31 +1252,33 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- ///
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanef")]
[CLSCompliant(false)]
public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, Single* eqn) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")]
[CLSCompliant(false)]
public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, int[] equation) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")]
[CLSCompliant(false)]
public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, ref int equation) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glClipPlanex")]
[CLSCompliant(false)]
public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation) { throw new NotImplementedException(); }
@@ -1247,15 +1286,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the current color
///
- ///
- ///
+ ///
/// Specify new red, green, and blue values for the current color.
- ///
///
- ///
- ///
+ ///
+ /// Specify new red, green, and blue values for the current color.
+ ///
+ ///
+ /// Specify new red, green, and blue values for the current color.
+ ///
+ ///
/// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4f")]
public static void Color4(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); }
@@ -1263,35 +1304,43 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the current color
///
- ///
- ///
+ ///
/// Specify new red, green, and blue values for the current color.
- ///
///
- ///
- ///
+ ///
+ /// Specify new red, green, and blue values for the current color.
+ ///
+ ///
+ /// Specify new red, green, and blue values for the current color.
+ ///
+ ///
/// Specifies a new alpha value for the current color. Included only in the four-argument glColor4 commands.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4ub")]
public static void Color4(Byte red, Byte green, Byte blue, Byte alpha) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColor4x")]
public static void Color4x(int red, int green, int blue, int alpha) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Enable and disable writing of frame buffer color components
///
- ///
- ///
- /// For glColorMaski, specifies the index of the draw buffer whose color mask to set.
- ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
///
- ///
- ///
- /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all GL_TRUE, indicating that the color components are written.
- ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
+ ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
+ ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorMask")]
public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); }
@@ -1299,25 +1348,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
@@ -1326,25 +1367,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
@@ -1356,25 +1389,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
@@ -1386,25 +1411,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
@@ -1416,25 +1433,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
@@ -1445,25 +1454,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
@@ -1471,25 +1472,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
[CLSCompliant(false)]
@@ -1500,25 +1493,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
[CLSCompliant(false)]
@@ -1529,25 +1514,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
[CLSCompliant(false)]
@@ -1558,25 +1535,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of colors
///
- ///
- ///
+ ///
/// Specifies the number of components per color. Must be 3 or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each color component in the array. Symbolic constants GL_BYTE, GL_UNSIGNED_BYTE, GL_SHORT, GL_UNSIGNED_SHORT, GL_INT, GL_UNSIGNED_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each color component in the array. Symbolic constants Byte, UnsignedByte, Short, UnsignedShort, Int, UnsignedInt, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive colors. If stride is 0, the colors are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first component of the first color element in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glColorPointer")]
public static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.ColorPointerType type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
@@ -1586,45 +1555,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
@@ -1633,45 +1586,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
@@ -1683,45 +1620,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
@@ -1733,45 +1654,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
@@ -1783,45 +1688,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
@@ -1832,45 +1721,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
@@ -1878,45 +1751,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
[CLSCompliant(false)]
@@ -1927,45 +1784,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
[CLSCompliant(false)]
@@ -1976,45 +1817,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
[CLSCompliant(false)]
@@ -2025,45 +1850,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexImage2D")]
public static void CompressedTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T7 data)
@@ -2073,50 +1882,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -2125,50 +1916,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -2180,50 +1953,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -2235,50 +1990,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -2290,50 +2027,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -2344,50 +2063,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
@@ -2395,50 +2096,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
[CLSCompliant(false)]
@@ -2449,50 +2132,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
[CLSCompliant(false)]
@@ -2503,50 +2168,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
[CLSCompliant(false)]
@@ -2557,50 +2204,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCompressedTexSubImage2D")]
public static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data)
@@ -2610,40 +2239,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Copy pixels into a 2D texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
- /// Specifies the internal format of the texture. Must be one of the following symbolic constants: GL_COMPRESSED_RED, GL_COMPRESSED_RG, GL_COMPRESSED_RGB, GL_COMPRESSED_RGBA. GL_COMPRESSED_SRGB, GL_COMPRESSED_SRGB_ALPHA. GL_DEPTH_COMPONENT, GL_DEPTH_COMPONENT16, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT32, GL_STENCIL_INDEX8, GL_RED, GL_RG, GL_RGB, GL_R3_G3_B2, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, GL_RGBA16, GL_SRGB, GL_SRGB8, GL_SRGB_ALPHA, or GL_SRGB8_ALPHA8.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, or Rgba.
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image.
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
///
- ///
- ///
- /// Specifies the height of the texture image.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Must be 0.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
+ ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexImage2D")]
@@ -2652,40 +2270,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Copy pixels into a 2D texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
- /// Specifies the internal format of the texture. Must be one of the following symbolic constants: GL_COMPRESSED_RED, GL_COMPRESSED_RG, GL_COMPRESSED_RGB, GL_COMPRESSED_RGBA. GL_COMPRESSED_SRGB, GL_COMPRESSED_SRGB_ALPHA. GL_DEPTH_COMPONENT, GL_DEPTH_COMPONENT16, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT32, GL_STENCIL_INDEX8, GL_RED, GL_RG, GL_RGB, GL_R3_G3_B2, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, GL_RGBA16, GL_SRGB, GL_SRGB8, GL_SRGB_ALPHA, or GL_SRGB8_ALPHA8.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, or Rgba.
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image.
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
///
- ///
- ///
- /// Specifies the height of the texture image.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Must be 0.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
+ ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexImage2D")]
public static void CopyTexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); }
@@ -2693,40 +2300,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Copy a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
+ ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexSubImage2D")]
@@ -2735,63 +2331,48 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Copy a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
+ ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCopyTexSubImage2D")]
public static void CopyTexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Specify whether front- or back-facing facets can be culled
+ /// Specify whether front- or back-facing polygons can be culled
///
- ///
- ///
- /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants GL_FRONT, GL_BACK, and GL_FRONT_AND_BACK are accepted. The initial value is GL_BACK.
- ///
+ ///
+ /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")]
public static void CullFace(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); }
/// [requires: v1.0]
- /// Specify whether front- or back-facing facets can be culled
+ /// Specify whether front- or back-facing polygons can be culled
///
- ///
- ///
- /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants GL_FRONT, GL_BACK, and GL_FRONT_AND_BACK are accepted. The initial value is GL_BACK.
- ///
+ ///
+ /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glCullFace")]
public static void CullFace(OpenTK.Graphics.ES11.CullFaceMode mode) { throw new NotImplementedException(); }
@@ -2799,15 +2380,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
- /// Specifies the number of buffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2816,15 +2390,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
- /// Specifies the number of buffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2833,15 +2400,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2850,15 +2413,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2867,15 +2426,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2884,15 +2439,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2901,15 +2452,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2918,15 +2465,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
@@ -2935,15 +2478,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
- /// Specifies the number of textures to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -2952,15 +2488,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
- /// Specifies the number of textures to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -2969,15 +2498,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -2986,15 +2511,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -3003,15 +2524,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -3020,15 +2537,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -3037,15 +2550,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -3054,15 +2563,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
@@ -3071,10 +2576,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify the value used for depth buffer comparisons
///
- ///
- ///
- /// Specifies the depth comparison function. Symbolic constants GL_NEVER, GL_LESS, GL_EQUAL, GL_LEQUAL, GL_GREATER, GL_NOTEQUAL, GL_GEQUAL, and GL_ALWAYS are accepted. The initial value is GL_LESS.
- ///
+ ///
+ /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthFunc")]
@@ -3083,10 +2586,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify the value used for depth buffer comparisons
///
- ///
- ///
- /// Specifies the depth comparison function. Symbolic constants GL_NEVER, GL_LESS, GL_EQUAL, GL_LEQUAL, GL_GREATER, GL_NOTEQUAL, GL_GEQUAL, and GL_ALWAYS are accepted. The initial value is GL_LESS.
- ///
+ ///
+ /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthFunc")]
public static void DepthFunc(OpenTK.Graphics.ES11.DepthFunction func) { throw new NotImplementedException(); }
@@ -3094,10 +2595,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Enable or disable writing into the depth buffer
///
- ///
- ///
- /// Specifies whether the depth buffer is enabled for writing. If flag is GL_FALSE, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled.
- ///
+ ///
+ /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthMask")]
public static void DepthMask(bool flag) { throw new NotImplementedException(); }
@@ -3105,58 +2604,54 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify mapping of depth values from normalized device coordinates to window coordinates
///
- ///
- ///
+ ///
/// Specifies the mapping of the near clipping plane to window coordinates. The initial value is 0.
- ///
///
- ///
- ///
+ ///
/// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthRangef")]
public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDepthRangex")]
public static void DepthRangex(int n, int f) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisable")]
public static void Disable(OpenTK.Graphics.ES11.All cap) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisable")]
public static void Disable(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisableClientState")]
public static void DisableClientState(OpenTK.Graphics.ES11.All array) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDisableClientState")]
public static void DisableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")]
@@ -3165,20 +2660,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")]
@@ -3187,20 +2676,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawArrays")]
public static void DrawArrays(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); }
@@ -3208,25 +2691,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3235,25 +2710,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3265,25 +2732,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3295,25 +2754,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3325,25 +2776,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3354,25 +2797,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3381,25 +2816,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3411,25 +2838,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3441,25 +2860,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3471,25 +2882,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
@@ -3500,25 +2903,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.All type, IntPtr indices) { throw new NotImplementedException(); }
@@ -3526,25 +2921,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
[CLSCompliant(false)]
@@ -3555,25 +2942,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
[CLSCompliant(false)]
@@ -3584,25 +2963,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
[CLSCompliant(false)]
@@ -3613,25 +2984,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glDrawElements")]
public static void DrawElements(OpenTK.Graphics.ES11.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices)
@@ -3641,15 +3004,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Enable or disable server-side GL capabilities
///
- ///
- ///
+ ///
/// Specifies a symbolic constant indicating a GL capability.
- ///
- ///
- ///
- ///
- /// Specifies the index of the switch to disable (for glEnablei and glDisablei only).
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnable")]
@@ -3658,15 +3014,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Enable or disable server-side GL capabilities
///
- ///
- ///
+ ///
/// Specifies a symbolic constant indicating a GL capability.
- ///
- ///
- ///
- ///
- /// Specifies the index of the switch to disable (for glEnablei and glDisablei only).
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnable")]
public static void Enable(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); }
@@ -3674,10 +3023,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Enable or disable client-side capability
///
- ///
- ///
- /// Specifies the capability to enable. Symbolic constants GL_COLOR_ARRAY, GL_EDGE_FLAG_ARRAY, GL_FOG_COORD_ARRAY, GL_INDEX_ARRAY, GL_NORMAL_ARRAY, GL_SECONDARY_COLOR_ARRAY, GL_TEXTURE_COORD_ARRAY, and GL_VERTEX_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the capability to enable. Symbolic constants ColorArray, EdgeFlagArray, FogCoordArray, IndexArray, NormalArray, SecondaryColorArray, TextureCoordArray, and VertexArray are accepted.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnableClientState")]
@@ -3686,10 +3033,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Enable or disable client-side capability
///
- ///
- ///
- /// Specifies the capability to enable. Symbolic constants GL_COLOR_ARRAY, GL_EDGE_FLAG_ARRAY, GL_FOG_COORD_ARRAY, GL_INDEX_ARRAY, GL_NORMAL_ARRAY, GL_SECONDARY_COLOR_ARRAY, GL_TEXTURE_COORD_ARRAY, and GL_VERTEX_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the capability to enable. Symbolic constants ColorArray, EdgeFlagArray, FogCoordArray, IndexArray, NormalArray, SecondaryColorArray, TextureCoordArray, and VertexArray are accepted.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glEnableClientState")]
public static void EnableClientState(OpenTK.Graphics.ES11.EnableCap array) { throw new NotImplementedException(); }
@@ -3709,15 +3054,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify fog parameters
///
- ///
- ///
- /// Specifies a single-valued fog parameter. GL_FOG_MODE, GL_FOG_DENSITY, GL_FOG_START, GL_FOG_END, GL_FOG_INDEX, and GL_FOG_COORD_SRC are accepted.
- ///
+ ///
+ /// Specifies a single-valued fog parameter. FogMode, FogDensity, FogStart, FogEnd, FogIndex, and FogCoordSrc are accepted.
///
- ///
- ///
+ ///
/// Specifies the value that pname will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogf")]
@@ -3726,15 +3067,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify fog parameters
///
- ///
- ///
- /// Specifies a single-valued fog parameter. GL_FOG_MODE, GL_FOG_DENSITY, GL_FOG_START, GL_FOG_END, GL_FOG_INDEX, and GL_FOG_COORD_SRC are accepted.
- ///
+ ///
+ /// Specifies a single-valued fog parameter. FogMode, FogDensity, FogStart, FogEnd, FogIndex, and FogCoordSrc are accepted.
///
- ///
- ///
+ ///
/// Specifies the value that pname will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogf")]
public static void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single param) { throw new NotImplementedException(); }
@@ -3742,15 +3079,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify fog parameters
///
- ///
- ///
- /// Specifies a single-valued fog parameter. GL_FOG_MODE, GL_FOG_DENSITY, GL_FOG_START, GL_FOG_END, GL_FOG_INDEX, and GL_FOG_COORD_SRC are accepted.
- ///
+ ///
+ /// Specifies a single-valued fog parameter. FogMode, FogDensity, FogStart, FogEnd, FogIndex, and FogCoordSrc are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that pname will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")]
@@ -3760,15 +3093,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify fog parameters
///
- ///
- ///
- /// Specifies a single-valued fog parameter. GL_FOG_MODE, GL_FOG_DENSITY, GL_FOG_START, GL_FOG_END, GL_FOG_INDEX, and GL_FOG_COORD_SRC are accepted.
- ///
+ ///
+ /// Specifies a single-valued fog parameter. FogMode, FogDensity, FogStart, FogEnd, FogIndex, and FogCoordSrc are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that pname will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")]
@@ -3778,15 +3107,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify fog parameters
///
- ///
- ///
- /// Specifies a single-valued fog parameter. GL_FOG_MODE, GL_FOG_DENSITY, GL_FOG_START, GL_FOG_END, GL_FOG_INDEX, and GL_FOG_COORD_SRC are accepted.
- ///
+ ///
+ /// Specifies a single-valued fog parameter. FogMode, FogDensity, FogStart, FogEnd, FogIndex, and FogCoordSrc are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that pname will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")]
[CLSCompliant(false)]
@@ -3795,30 +3120,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify fog parameters
///
- ///
- ///
- /// Specifies a single-valued fog parameter. GL_FOG_MODE, GL_FOG_DENSITY, GL_FOG_START, GL_FOG_END, GL_FOG_INDEX, and GL_FOG_COORD_SRC are accepted.
- ///
+ ///
+ /// Specifies a single-valued fog parameter. FogMode, FogDensity, FogStart, FogEnd, FogIndex, and FogCoordSrc are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that pname will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogfv")]
[CLSCompliant(false)]
public static unsafe void Fog(OpenTK.Graphics.ES11.FogParameter pname, Single* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogx")]
public static void Fogx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")]
[CLSCompliant(false)]
public static void Fogx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFogxv")]
[CLSCompliant(false)]
public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); }
@@ -3826,10 +3153,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define front- and back-facing polygons
///
- ///
- ///
- /// Specifies the orientation of front-facing polygons. GL_CW and GL_CCW are accepted. The initial value is GL_CCW.
- ///
+ ///
+ /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrontFace")]
@@ -3838,10 +3163,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define front- and back-facing polygons
///
- ///
- ///
- /// Specifies the orientation of front-facing polygons. GL_CW and GL_CCW are accepted. The initial value is GL_CCW.
- ///
+ ///
+ /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrontFace")]
public static void FrontFace(OpenTK.Graphics.ES11.FrontFaceDirection mode) { throw new NotImplementedException(); }
@@ -3849,41 +3172,40 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Multiply the current matrix by a perspective matrix
///
- ///
- ///
+ ///
/// Specify the coordinates for the left and right vertical clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the left and right vertical clipping planes.
+ ///
+ ///
/// Specify the coordinates for the bottom and top horizontal clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the bottom and top horizontal clipping planes.
+ ///
+ ///
+ /// Specify the distances to the near and far depth clipping planes. Both distances must be positive.
+ ///
+ ///
/// Specify the distances to the near and far depth clipping planes. Both distances must be positive.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrustumf")]
public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glFrustumx")]
public static void Frustumx(int l, int r, int b, int t, int n, int f) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
- /// Specifies the number of buffer object names to be generated.
- ///
- ///
- /// [length: n]
- ///
- /// Specifies an array in which the generated buffer object names are stored.
- ///
- ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static Int32 GenBuffer() { throw new NotImplementedException(); }
@@ -3891,15 +3213,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
@@ -3908,15 +3226,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
@@ -3925,15 +3239,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
@@ -3942,15 +3252,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
@@ -3959,15 +3265,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
@@ -3976,15 +3278,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
@@ -3993,16 +3291,6 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
- /// Specifies the number of texture names to be generated.
- ///
- ///
- /// [length: n]
- ///
- /// Specifies an array in which the generated texture names are stored.
- ///
- ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
public static Int32 GenTexture() { throw new NotImplementedException(); }
@@ -4010,15 +3298,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
+ ///
/// Specifies the number of texture names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated texture names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
@@ -4027,15 +3311,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
+ ///
/// Specifies the number of texture names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated texture names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
@@ -4044,15 +3324,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
+ ///
/// Specifies the number of texture names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated texture names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
@@ -4061,15 +3337,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
+ ///
/// Specifies the number of texture names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated texture names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
@@ -4078,15 +3350,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
+ ///
/// Specifies the number of texture names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated texture names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
@@ -4095,60 +3363,70 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Generate texture names
///
- ///
- ///
+ ///
/// Specifies the number of texture names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated texture names are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGenTextures")]
[CLSCompliant(false)]
public static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static bool GetBoolean(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static bool GetBoolean(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute] out bool data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static unsafe void GetBoolean(OpenTK.Graphics.ES11.All pname, [OutAttribute] bool* data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] bool[] data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out bool data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBooleanv")]
[CLSCompliant(false)]
public static unsafe void GetBoolean(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] bool* data) { throw new NotImplementedException(); }
@@ -4156,20 +3434,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return parameters of a buffer object
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, or GL_PIXEL_UNPACK_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
- /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE.
- ///
+ ///
+ /// Specifies the symbolic name of a buffer object parameter. Accepted values are BufferSize or BufferUsage.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested parameter.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")]
[CLSCompliant(false)]
@@ -4178,20 +3450,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return parameters of a buffer object
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, or GL_PIXEL_UNPACK_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
- /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE.
- ///
+ ///
+ /// Specifies the symbolic name of a buffer object parameter. Accepted values are BufferSize or BufferUsage.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested parameter.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")]
[CLSCompliant(false)]
@@ -4200,20 +3466,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return parameters of a buffer object
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, or GL_PIXEL_UNPACK_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
- /// Specifies the symbolic name of a buffer object parameter. Accepted values are GL_BUFFER_ACCESS, GL_BUFFER_MAPPED, GL_BUFFER_SIZE, or GL_BUFFER_USAGE.
- ///
+ ///
+ /// Specifies the symbolic name of a buffer object parameter. Accepted values are BufferSize or BufferUsage.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested parameter.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetBufferParameteriv")]
[CLSCompliant(false)]
@@ -4222,15 +3482,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the coefficients of the specified clipping plane
///
- ///
- ///
- /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.
- ///
+ ///
+ /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
[CLSCompliant(false)]
@@ -4239,15 +3495,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the coefficients of the specified clipping plane
///
- ///
- ///
- /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.
- ///
+ ///
+ /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
[CLSCompliant(false)]
@@ -4256,31 +3508,33 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the coefficients of the specified clipping plane
///
- ///
- ///
- /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.
- ///
+ ///
+ /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
[CLSCompliant(false)]
public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single* equation) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
[CLSCompliant(false)]
public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int[] equation) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
[CLSCompliant(false)]
public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] out int equation) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
[CLSCompliant(false)]
public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int* equation) { throw new NotImplementedException(); }
@@ -4292,109 +3546,144 @@ namespace OpenTK.Graphics.ES11
public static OpenTK.Graphics.ES11.ErrorCode GetError() { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")]
[CLSCompliant(false)]
public static int GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")]
[CLSCompliant(false)]
public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")]
[CLSCompliant(false)]
public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFixedv")]
[CLSCompliant(false)]
public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static Single GetFloat(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static Single GetFloat(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Single data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static unsafe void GetFloat(OpenTK.Graphics.ES11.All pname, [OutAttribute] Single* data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Single[] data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out Single data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetFloatv")]
[CLSCompliant(false)]
public static unsafe void GetFloat(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Single* data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static Int32 GetInteger(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static Int32 GetInteger(OpenTK.Graphics.ES11.GetPName pname) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static unsafe void GetInteger(OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int32[] data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] out Int32 data) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetIntegerv")]
[CLSCompliant(false)]
public static unsafe void GetInteger(OpenTK.Graphics.ES11.GetPName pname, [OutAttribute] Int32* data) { throw new NotImplementedException(); }
@@ -4402,20 +3691,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return light source parameter values
///
- ///
- ///
- /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT where ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light where ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a light source parameter for light. Accepted symbolic names are GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_POSITION, GL_SPOT_DIRECTION, GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION.
- ///
+ ///
+ /// Specifies a light source parameter for light. Accepted symbolic names are Ambient, Diffuse, Specular, Position, SpotDirection, SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")]
@@ -4425,20 +3708,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return light source parameter values
///
- ///
- ///
- /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT where ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light where ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a light source parameter for light. Accepted symbolic names are GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_POSITION, GL_SPOT_DIRECTION, GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION.
- ///
+ ///
+ /// Specifies a light source parameter for light. Accepted symbolic names are Ambient, Diffuse, Specular, Position, SpotDirection, SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")]
@@ -4448,20 +3725,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return light source parameter values
///
- ///
- ///
- /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT where ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light where ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a light source parameter for light. Accepted symbolic names are GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_POSITION, GL_SPOT_DIRECTION, GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION.
- ///
+ ///
+ /// Specifies a light source parameter for light. Accepted symbolic names are Ambient, Diffuse, Specular, Position, SpotDirection, SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")]
@@ -4471,20 +3742,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return light source parameter values
///
- ///
- ///
- /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT where ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light where ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a light source parameter for light. Accepted symbolic names are GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_POSITION, GL_SPOT_DIRECTION, GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION.
- ///
+ ///
+ /// Specifies a light source parameter for light. Accepted symbolic names are Ambient, Diffuse, Specular, Position, SpotDirection, SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")]
[CLSCompliant(false)]
@@ -4493,20 +3758,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return light source parameter values
///
- ///
- ///
- /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT where ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light where ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a light source parameter for light. Accepted symbolic names are GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_POSITION, GL_SPOT_DIRECTION, GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION.
- ///
+ ///
+ /// Specifies a light source parameter for light. Accepted symbolic names are Ambient, Diffuse, Specular, Position, SpotDirection, SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")]
[CLSCompliant(false)]
@@ -4515,36 +3774,39 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return light source parameter values
///
- ///
- ///
- /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT where ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light source. The number of possible lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light where ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a light source parameter for light. Accepted symbolic names are GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_POSITION, GL_SPOT_DIRECTION, GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION.
- ///
+ ///
+ /// Specifies a light source parameter for light. Accepted symbolic names are Ambient, Diffuse, Specular, Position, SpotDirection, SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightfv")]
[CLSCompliant(false)]
public static unsafe void GetLight(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")]
[CLSCompliant(false)]
public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")]
[CLSCompliant(false)]
public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetLightxv")]
[CLSCompliant(false)]
public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
@@ -4552,20 +3814,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return material parameters
///
- ///
- ///
- /// Specifies which of the two materials is being queried. GL_FRONT or GL_BACK are accepted, representing the front and back materials, respectively.
- ///
+ ///
+ /// Specifies which of the two materials is being queried. Front or Back are accepted, representing the front and back materials, respectively.
///
- ///
- ///
- /// Specifies the material parameter to return. GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_EMISSION, GL_SHININESS, and GL_COLOR_INDEXES are accepted.
- ///
+ ///
+ /// Specifies the material parameter to return. Ambient, Diffuse, Specular, Emission, Shininess, and ColorIndexes are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")]
@@ -4575,20 +3831,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return material parameters
///
- ///
- ///
- /// Specifies which of the two materials is being queried. GL_FRONT or GL_BACK are accepted, representing the front and back materials, respectively.
- ///
+ ///
+ /// Specifies which of the two materials is being queried. Front or Back are accepted, representing the front and back materials, respectively.
///
- ///
- ///
- /// Specifies the material parameter to return. GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_EMISSION, GL_SHININESS, and GL_COLOR_INDEXES are accepted.
- ///
+ ///
+ /// Specifies the material parameter to return. Ambient, Diffuse, Specular, Emission, Shininess, and ColorIndexes are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")]
@@ -4598,20 +3848,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return material parameters
///
- ///
- ///
- /// Specifies which of the two materials is being queried. GL_FRONT or GL_BACK are accepted, representing the front and back materials, respectively.
- ///
+ ///
+ /// Specifies which of the two materials is being queried. Front or Back are accepted, representing the front and back materials, respectively.
///
- ///
- ///
- /// Specifies the material parameter to return. GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_EMISSION, GL_SHININESS, and GL_COLOR_INDEXES are accepted.
- ///
+ ///
+ /// Specifies the material parameter to return. Ambient, Diffuse, Specular, Emission, Shininess, and ColorIndexes are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")]
@@ -4621,20 +3865,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return material parameters
///
- ///
- ///
- /// Specifies which of the two materials is being queried. GL_FRONT or GL_BACK are accepted, representing the front and back materials, respectively.
- ///
+ ///
+ /// Specifies which of the two materials is being queried. Front or Back are accepted, representing the front and back materials, respectively.
///
- ///
- ///
- /// Specifies the material parameter to return. GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_EMISSION, GL_SHININESS, and GL_COLOR_INDEXES are accepted.
- ///
+ ///
+ /// Specifies the material parameter to return. Ambient, Diffuse, Specular, Emission, Shininess, and ColorIndexes are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")]
[CLSCompliant(false)]
@@ -4643,20 +3881,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return material parameters
///
- ///
- ///
- /// Specifies which of the two materials is being queried. GL_FRONT or GL_BACK are accepted, representing the front and back materials, respectively.
- ///
+ ///
+ /// Specifies which of the two materials is being queried. Front or Back are accepted, representing the front and back materials, respectively.
///
- ///
- ///
- /// Specifies the material parameter to return. GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_EMISSION, GL_SHININESS, and GL_COLOR_INDEXES are accepted.
- ///
+ ///
+ /// Specifies the material parameter to return. Ambient, Diffuse, Specular, Emission, Shininess, and ColorIndexes are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")]
[CLSCompliant(false)]
@@ -4665,51 +3897,63 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return material parameters
///
- ///
- ///
- /// Specifies which of the two materials is being queried. GL_FRONT or GL_BACK are accepted, representing the front and back materials, respectively.
- ///
+ ///
+ /// Specifies which of the two materials is being queried. Front or Back are accepted, representing the front and back materials, respectively.
///
- ///
- ///
- /// Specifies the material parameter to return. GL_AMBIENT, GL_DIFFUSE, GL_SPECULAR, GL_EMISSION, GL_SHININESS, and GL_COLOR_INDEXES are accepted.
- ///
+ ///
+ /// Specifies the material parameter to return. Ambient, Diffuse, Specular, Emission, Shininess, and ColorIndexes are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialfv")]
[CLSCompliant(false)]
public static unsafe void GetMaterial(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, [OutAttribute] Single* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")]
[CLSCompliant(false)]
public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")]
[CLSCompliant(false)]
public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetMaterialxv")]
[CLSCompliant(false)]
public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
///
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")]
[CLSCompliant(false)]
public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute] int[] values) { throw new NotImplementedException(); }
///
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")]
[CLSCompliant(false)]
public static void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute] out int values) { throw new NotImplementedException(); }
///
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetPixelMapxv")]
[CLSCompliant(false)]
public static unsafe void GetPixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, [OutAttribute] int* values) { throw new NotImplementedException(); }
@@ -4717,15 +3961,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
@@ -4734,15 +3974,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
@@ -4754,15 +3990,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
@@ -4774,15 +4006,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
@@ -4794,15 +4022,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
@@ -4813,15 +4037,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); }
@@ -4829,15 +4049,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
[CLSCompliant(false)]
@@ -4848,15 +4064,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
[CLSCompliant(false)]
@@ -4867,15 +4079,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
[CLSCompliant(false)]
@@ -4886,15 +4094,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return the address of the specified pointer
///
- ///
- ///
- /// Specifies the array or buffer pointer to be returned. Symbolic constants GL_COLOR_ARRAY_POINTER, GL_EDGE_FLAG_ARRAY_POINTER, GL_FOG_COORD_ARRAY_POINTER, GL_FEEDBACK_BUFFER_POINTER, GL_INDEX_ARRAY_POINTER, GL_NORMAL_ARRAY_POINTER, GL_SECONDARY_COLOR_ARRAY_POINTER, GL_SELECTION_BUFFER_POINTER, GL_TEXTURE_COORD_ARRAY_POINTER, or GL_VERTEX_ARRAY_POINTER are accepted.
- ///
+ ///
+ /// Specifies the array or buffer pointer to be returned. Symbolic constants ColorArrayPointer, EdgeFlagArrayPointer, FogCoordArrayPointer, FeedbackBufferPointer, IndexArrayPointer, NormalArrayPointer, SecondaryColorArrayPointer, SelectionBufferPointer, TextureCoordArrayPointer, or VertexArrayPointer are accepted.
///
- ///
- ///
+ /// [length: 1]
/// Returns the pointer value specified by pname.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetPointerv")]
public static void GetPointer(OpenTK.Graphics.ES11.GetPointervPName pname, [InAttribute, OutAttribute] ref T1 @params)
@@ -4904,15 +4108,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return a string describing the current GL connection
///
- ///
- ///
- /// Specifies a symbolic constant, one of GL_VENDOR, GL_RENDERER, GL_VERSION, or GL_SHADING_LANGUAGE_VERSION. Additionally, glGetStringi accepts the GL_EXTENSIONS token.
- ///
- ///
- ///
- ///
- /// For glGetStringi, specifies the index of the string to return.
- ///
+ ///
+ /// Specifies a symbolic constant, one of Vendor, Renderer, Version, ShadingLanguageVersion, or Extensions.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetString")]
@@ -4921,15 +4118,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return a string describing the current GL connection
///
- ///
- ///
- /// Specifies a symbolic constant, one of GL_VENDOR, GL_RENDERER, GL_VERSION, or GL_SHADING_LANGUAGE_VERSION. Additionally, glGetStringi accepts the GL_EXTENSIONS token.
- ///
- ///
- ///
- ///
- /// For glGetStringi, specifies the index of the string to return.
- ///
+ ///
+ /// Specifies a symbolic constant, one of Vendor, Renderer, Version, ShadingLanguageVersion, or Extensions.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetString")]
public static String GetString(OpenTK.Graphics.ES11.StringName name) { throw new NotImplementedException(); }
@@ -4937,20 +4127,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
@@ -4960,20 +4144,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
@@ -4983,20 +4161,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
@@ -5006,20 +4178,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
[CLSCompliant(false)]
@@ -5028,20 +4194,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
[CLSCompliant(false)]
@@ -5050,20 +4210,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvfv")]
[CLSCompliant(false)]
@@ -5072,20 +4226,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")]
@@ -5095,20 +4243,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")]
@@ -5118,20 +4260,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")]
@@ -5141,20 +4277,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")]
[CLSCompliant(false)]
@@ -5163,20 +4293,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")]
[CLSCompliant(false)]
@@ -5185,36 +4309,39 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL, or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl, or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a texture environment parameter. Accepted values are GL_TEXTURE_ENV_MODE, GL_TEXTURE_ENV_COLOR, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a texture environment parameter. Accepted values are TextureEnvMode, TextureEnvColor, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnviv")]
[CLSCompliant(false)]
public static unsafe void GetTexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")]
[CLSCompliant(false)]
public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")]
[CLSCompliant(false)]
public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexEnvxv")]
[CLSCompliant(false)]
public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
@@ -5222,20 +4349,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
@@ -5245,20 +4366,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
@@ -5268,20 +4383,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
@@ -5291,20 +4400,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
[CLSCompliant(false)]
@@ -5313,20 +4416,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
[CLSCompliant(false)]
@@ -5335,20 +4432,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterfv")]
[CLSCompliant(false)]
@@ -5357,20 +4448,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
@@ -5380,20 +4465,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
@@ -5403,20 +4482,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
@@ -5426,20 +4499,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
[CLSCompliant(false)]
@@ -5448,20 +4515,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
[CLSCompliant(false)]
@@ -5470,36 +4531,39 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Return texture parameter values
///
- ///
- ///
- /// Specifies the symbolic name of the target texture. GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_3D, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, and GL_TEXTURE_CUBE_MAP_ARRAY are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of the target texture of the active texture unit. Texture2D and TextureCubeMap are accepted.
///
- ///
- ///
- /// Specifies the symbolic name of a texture parameter. GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_BORDER_COLOR, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_IMMUTABLE_FORMAT, GL_TEXTURE_IMMUTABLE_LEVELS, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_SWIZZLE_RGBA, GL_TEXTURE_VIEW_MIN_LAYER, GL_TEXTURE_VIEW_MIN_LEVEL, GL_TEXTURE_VIEW_NUM_LAYERS, GL_TEXTURE_VIEW_NUM_LEVELS, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, and GL_TEXTURE_WRAP_R are accepted.
- ///
+ ///
+ /// Specifies the symbolic name of a texture parameter. TextureMagFilter, TextureMinFilter, TextureWrapS, and TextureWrapT are accepted.
///
- ///
- ///
- /// Returns the texture parameters.
- ///
+ /// [length: pname]
+ /// Returns the texture parameter.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameteriv")]
[CLSCompliant(false)]
public static unsafe void GetTexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.GetTextureParameter pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")]
[CLSCompliant(false)]
public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")]
[CLSCompliant(false)]
public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetTexParameterxv")]
[CLSCompliant(false)]
public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
@@ -5507,15 +4571,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify implementation-specific hints
///
- ///
- ///
- /// Specifies a symbolic constant indicating the behavior to be controlled. GL_LINE_SMOOTH_HINT, GL_POLYGON_SMOOTH_HINT, GL_TEXTURE_COMPRESSION_HINT, and GL_FRAGMENT_SHADER_DERIVATIVE_HINT are accepted.
- ///
+ ///
+ /// Specifies a symbolic constant indicating the behavior to be controlled. GenerateMipmapHint is accepted.
///
- ///
- ///
- /// Specifies a symbolic constant indicating the desired behavior. GL_FASTEST, GL_NICEST, and GL_DONT_CARE are accepted.
- ///
+ ///
+ /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glHint")]
@@ -5524,15 +4584,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify implementation-specific hints
///
- ///
- ///
- /// Specifies a symbolic constant indicating the behavior to be controlled. GL_LINE_SMOOTH_HINT, GL_POLYGON_SMOOTH_HINT, GL_TEXTURE_COMPRESSION_HINT, and GL_FRAGMENT_SHADER_DERIVATIVE_HINT are accepted.
- ///
+ ///
+ /// Specifies a symbolic constant indicating the behavior to be controlled. GenerateMipmapHint is accepted.
///
- ///
- ///
- /// Specifies a symbolic constant indicating the desired behavior. GL_FASTEST, GL_NICEST, and GL_DONT_CARE are accepted.
- ///
+ ///
+ /// Specifies a symbolic constant indicating the desired behavior. Fastest, Nicest, and DontCare are accepted.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glHint")]
public static void Hint(OpenTK.Graphics.ES11.HintTarget target, OpenTK.Graphics.ES11.HintMode mode) { throw new NotImplementedException(); }
@@ -5540,10 +4596,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Determine if a name corresponds to a buffer object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a buffer object.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")]
[CLSCompliant(false)]
@@ -5552,10 +4606,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Determine if a name corresponds to a buffer object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a buffer object.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsBuffer")]
[CLSCompliant(false)]
@@ -5564,15 +4616,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Test whether a capability is enabled
///
- ///
- ///
+ ///
/// Specifies a symbolic constant indicating a GL capability.
- ///
- ///
- ///
- ///
- /// Specifies the index of the capability.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsEnabled")]
@@ -5581,15 +4626,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Test whether a capability is enabled
///
- ///
- ///
+ ///
/// Specifies a symbolic constant indicating a GL capability.
- ///
- ///
- ///
- ///
- /// Specifies the index of the capability.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsEnabled")]
public static bool IsEnabled(OpenTK.Graphics.ES11.EnableCap cap) { throw new NotImplementedException(); }
@@ -5597,10 +4635,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Determine if a name corresponds to a texture
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a texture.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")]
[CLSCompliant(false)]
@@ -5609,10 +4645,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Determine if a name corresponds to a texture
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a texture.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glIsTexture")]
[CLSCompliant(false)]
@@ -5621,20 +4655,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set light source parameters
///
- ///
- ///
- /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT , where i ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light , where i ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a single-valued light source parameter for light. GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION are accepted.
- ///
+ ///
+ /// Specifies a single-valued light source parameter for light. SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation are accepted.
///
- ///
- ///
+ ///
/// Specifies the value that parameter pname of light source light will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightf")]
@@ -5643,20 +4671,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set light source parameters
///
- ///
- ///
- /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT , where i ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light , where i ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a single-valued light source parameter for light. GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION are accepted.
- ///
+ ///
+ /// Specifies a single-valued light source parameter for light. SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation are accepted.
///
- ///
- ///
+ ///
/// Specifies the value that parameter pname of light source light will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightf")]
public static void Light(OpenTK.Graphics.ES11.LightName light, OpenTK.Graphics.ES11.LightParameter pname, Single param) { throw new NotImplementedException(); }
@@ -5664,20 +4686,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set light source parameters
///
- ///
- ///
- /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT , where i ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light , where i ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a single-valued light source parameter for light. GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION are accepted.
- ///
+ ///
+ /// Specifies a single-valued light source parameter for light. SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that parameter pname of light source light will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")]
@@ -5687,20 +4703,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set light source parameters
///
- ///
- ///
- /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT , where i ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light , where i ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a single-valued light source parameter for light. GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION are accepted.
- ///
+ ///
+ /// Specifies a single-valued light source parameter for light. SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that parameter pname of light source light will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")]
@@ -5710,20 +4720,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set light source parameters
///
- ///
- ///
- /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT , where i ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light , where i ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a single-valued light source parameter for light. GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION are accepted.
- ///
+ ///
+ /// Specifies a single-valued light source parameter for light. SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that parameter pname of light source light will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")]
[CLSCompliant(false)]
@@ -5732,20 +4736,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set light source parameters
///
- ///
- ///
- /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form GL_LIGHT , where i ranges from 0 to the value of GL_MAX_LIGHTS - 1.
- ///
+ ///
+ /// Specifies a light. The number of lights depends on the implementation, but at least eight lights are supported. They are identified by symbolic names of the form Light , where i ranges from 0 to the value of MaxLights - 1.
///
- ///
- ///
- /// Specifies a single-valued light source parameter for light. GL_SPOT_EXPONENT, GL_SPOT_CUTOFF, GL_CONSTANT_ATTENUATION, GL_LINEAR_ATTENUATION, and GL_QUADRATIC_ATTENUATION are accepted.
- ///
+ ///
+ /// Specifies a single-valued light source parameter for light. SpotExponent, SpotCutoff, ConstantAttenuation, LinearAttenuation, and QuadraticAttenuation are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that parameter pname of light source light will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightfv")]
[CLSCompliant(false)]
@@ -5754,15 +4752,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the lighting model parameters
///
- ///
- ///
- /// Specifies a single-valued lighting model parameter. GL_LIGHT_MODEL_LOCAL_VIEWER, GL_LIGHT_MODEL_COLOR_CONTROL, and GL_LIGHT_MODEL_TWO_SIDE are accepted.
- ///
+ ///
+ /// Specifies a single-valued lighting model parameter. LightModelLocalViewer, LightModelColorControl, and LightModelTwoSide are accepted.
///
- ///
- ///
+ ///
/// Specifies the value that param will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelf")]
@@ -5771,15 +4765,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the lighting model parameters
///
- ///
- ///
- /// Specifies a single-valued lighting model parameter. GL_LIGHT_MODEL_LOCAL_VIEWER, GL_LIGHT_MODEL_COLOR_CONTROL, and GL_LIGHT_MODEL_TWO_SIDE are accepted.
- ///
+ ///
+ /// Specifies a single-valued lighting model parameter. LightModelLocalViewer, LightModelColorControl, and LightModelTwoSide are accepted.
///
- ///
- ///
+ ///
/// Specifies the value that param will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelf")]
public static void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single param) { throw new NotImplementedException(); }
@@ -5787,15 +4777,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the lighting model parameters
///
- ///
- ///
- /// Specifies a single-valued lighting model parameter. GL_LIGHT_MODEL_LOCAL_VIEWER, GL_LIGHT_MODEL_COLOR_CONTROL, and GL_LIGHT_MODEL_TWO_SIDE are accepted.
- ///
+ ///
+ /// Specifies a single-valued lighting model parameter. LightModelLocalViewer, LightModelColorControl, and LightModelTwoSide are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that param will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")]
@@ -5805,15 +4791,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the lighting model parameters
///
- ///
- ///
- /// Specifies a single-valued lighting model parameter. GL_LIGHT_MODEL_LOCAL_VIEWER, GL_LIGHT_MODEL_COLOR_CONTROL, and GL_LIGHT_MODEL_TWO_SIDE are accepted.
- ///
+ ///
+ /// Specifies a single-valued lighting model parameter. LightModelLocalViewer, LightModelColorControl, and LightModelTwoSide are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that param will be set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")]
@@ -5823,15 +4805,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the lighting model parameters
///
- ///
- ///
- /// Specifies a single-valued lighting model parameter. GL_LIGHT_MODEL_LOCAL_VIEWER, GL_LIGHT_MODEL_COLOR_CONTROL, and GL_LIGHT_MODEL_TWO_SIDE are accepted.
- ///
+ ///
+ /// Specifies a single-valued lighting model parameter. LightModelLocalViewer, LightModelColorControl, and LightModelTwoSide are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that param will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")]
[CLSCompliant(false)]
@@ -5840,44 +4818,55 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the lighting model parameters
///
- ///
- ///
- /// Specifies a single-valued lighting model parameter. GL_LIGHT_MODEL_LOCAL_VIEWER, GL_LIGHT_MODEL_COLOR_CONTROL, and GL_LIGHT_MODEL_TWO_SIDE are accepted.
- ///
+ ///
+ /// Specifies a single-valued lighting model parameter. LightModelLocalViewer, LightModelColorControl, and LightModelTwoSide are accepted.
///
- ///
- ///
+ /// [length: pname]
/// Specifies the value that param will be set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelfv")]
[CLSCompliant(false)]
public static unsafe void LightModel(OpenTK.Graphics.ES11.LightModelParameter pname, Single* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelx")]
public static void LightModelx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")]
[CLSCompliant(false)]
public static void LightModelx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightModelxv")]
[CLSCompliant(false)]
public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightx")]
public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")]
[CLSCompliant(false)]
public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLightxv")]
[CLSCompliant(false)]
public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
@@ -5885,15 +4874,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify the width of rasterized lines
///
- ///
- ///
+ ///
/// Specifies the width of rasterized lines. The initial value is 1.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLineWidth")]
public static void LineWidth(Single width) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLineWidthx")]
public static void LineWidthx(int width) { throw new NotImplementedException(); }
@@ -5906,10 +4894,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Replace the current matrix with the specified matrix
///
- /// [length: 16]
- ///
- /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix.
- ///
+ /// [length: 16]
+ /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")]
[CLSCompliant(false)]
@@ -5918,10 +4904,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Replace the current matrix with the specified matrix
///
- /// [length: 16]
- ///
- /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix.
- ///
+ /// [length: 16]
+ /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")]
[CLSCompliant(false)]
@@ -5930,26 +4914,27 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Replace the current matrix with the specified matrix
///
- /// [length: 16]
- ///
- /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix.
- ///
+ /// [length: 16]
+ /// Specifies a pointer to 16 consecutive values, which are used as the elements of a 4 times 4 column-major matrix.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixf")]
[CLSCompliant(false)]
public static unsafe void LoadMatrix(Single* m) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ /// [length: 16]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")]
[CLSCompliant(false)]
public static void LoadMatrixx(int[] m) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ /// [length: 16]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")]
[CLSCompliant(false)]
public static void LoadMatrixx(ref int m) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ /// [length: 16]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLoadMatrixx")]
[CLSCompliant(false)]
public static unsafe void LoadMatrixx(int* m) { throw new NotImplementedException(); }
@@ -5957,10 +4942,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a logical pixel operation for rendering
///
- ///
- ///
- /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: GL_CLEAR, GL_SET, GL_COPY, GL_COPY_INVERTED, GL_NOOP, GL_INVERT, GL_AND, GL_NAND, GL_OR, GL_NOR, GL_XOR, GL_EQUIV, GL_AND_REVERSE, GL_AND_INVERTED, GL_OR_REVERSE, and GL_OR_INVERTED. The initial value is GL_COPY.
- ///
+ ///
+ /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLogicOp")]
@@ -5969,10 +4952,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a logical pixel operation for rendering
///
- ///
- ///
- /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: GL_CLEAR, GL_SET, GL_COPY, GL_COPY_INVERTED, GL_NOOP, GL_INVERT, GL_AND, GL_NAND, GL_OR, GL_NOR, GL_XOR, GL_EQUIV, GL_AND_REVERSE, GL_AND_INVERTED, GL_OR_REVERSE, and GL_OR_INVERTED. The initial value is GL_COPY.
- ///
+ ///
+ /// Specifies a symbolic constant that selects a logical operation. The following symbols are accepted: Clear, Set, Copy, CopyInverted, Noop, Invert, And, Nand, Or, Nor, Xor, Equiv, AndReverse, AndInverted, OrReverse, and OrInverted. The initial value is Copy.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glLogicOp")]
public static void LogicOp(OpenTK.Graphics.ES11.LogicOp opcode) { throw new NotImplementedException(); }
@@ -5980,20 +4961,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify material parameters for the lighting model
///
- ///
- ///
- /// Specifies which face or faces are being updated. Must be one of GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK.
- ///
+ ///
+ /// Specifies which face or faces are being updated. Must be one of Front, Back, or FrontAndBack.
///
- ///
- ///
- /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be GL_SHININESS.
- ///
+ ///
+ /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be Shininess.
///
- ///
- ///
- /// Specifies the value that parameter GL_SHININESS will be set to.
- ///
+ ///
+ /// Specifies the value that parameter Shininess will be set to.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialf")]
@@ -6002,20 +4977,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify material parameters for the lighting model
///
- ///
- ///
- /// Specifies which face or faces are being updated. Must be one of GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK.
- ///
+ ///
+ /// Specifies which face or faces are being updated. Must be one of Front, Back, or FrontAndBack.
///
- ///
- ///
- /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be GL_SHININESS.
- ///
+ ///
+ /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be Shininess.
///
- ///
- ///
- /// Specifies the value that parameter GL_SHININESS will be set to.
- ///
+ ///
+ /// Specifies the value that parameter Shininess will be set to.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialf")]
public static void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single param) { throw new NotImplementedException(); }
@@ -6023,20 +4992,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify material parameters for the lighting model
///
- ///
- ///
- /// Specifies which face or faces are being updated. Must be one of GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK.
- ///
+ ///
+ /// Specifies which face or faces are being updated. Must be one of Front, Back, or FrontAndBack.
///
- ///
- ///
- /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be GL_SHININESS.
- ///
+ ///
+ /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be Shininess.
///
- ///
- ///
- /// Specifies the value that parameter GL_SHININESS will be set to.
- ///
+ /// [length: pname]
+ /// Specifies the value that parameter Shininess will be set to.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")]
@@ -6046,20 +5009,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify material parameters for the lighting model
///
- ///
- ///
- /// Specifies which face or faces are being updated. Must be one of GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK.
- ///
+ ///
+ /// Specifies which face or faces are being updated. Must be one of Front, Back, or FrontAndBack.
///
- ///
- ///
- /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be GL_SHININESS.
- ///
+ ///
+ /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be Shininess.
///
- ///
- ///
- /// Specifies the value that parameter GL_SHININESS will be set to.
- ///
+ /// [length: pname]
+ /// Specifies the value that parameter Shininess will be set to.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")]
@@ -6069,20 +5026,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify material parameters for the lighting model
///
- ///
- ///
- /// Specifies which face or faces are being updated. Must be one of GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK.
- ///
+ ///
+ /// Specifies which face or faces are being updated. Must be one of Front, Back, or FrontAndBack.
///
- ///
- ///
- /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be GL_SHININESS.
- ///
+ ///
+ /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be Shininess.
///
- ///
- ///
- /// Specifies the value that parameter GL_SHININESS will be set to.
- ///
+ /// [length: pname]
+ /// Specifies the value that parameter Shininess will be set to.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")]
[CLSCompliant(false)]
@@ -6091,35 +5042,38 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify material parameters for the lighting model
///
- ///
- ///
- /// Specifies which face or faces are being updated. Must be one of GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK.
- ///
+ ///
+ /// Specifies which face or faces are being updated. Must be one of Front, Back, or FrontAndBack.
///
- ///
- ///
- /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be GL_SHININESS.
- ///
+ ///
+ /// Specifies the single-valued material parameter of the face or faces that is being updated. Must be Shininess.
///
- ///
- ///
- /// Specifies the value that parameter GL_SHININESS will be set to.
- ///
+ /// [length: pname]
+ /// Specifies the value that parameter Shininess will be set to.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialfv")]
[CLSCompliant(false)]
public static unsafe void Material(OpenTK.Graphics.ES11.MaterialFace face, OpenTK.Graphics.ES11.MaterialParameter pname, Single* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialx")]
public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")]
[CLSCompliant(false)]
public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMaterialxv")]
[CLSCompliant(false)]
public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); }
@@ -6127,10 +5081,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify which matrix is the current matrix
///
- ///
- ///
- /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: GL_MODELVIEW, GL_PROJECTION, and GL_TEXTURE. The initial value is GL_MODELVIEW. Additionally, if the ARB_imaging extension is supported, GL_COLOR is also accepted.
- ///
+ ///
+ /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: Modelview, Projection, and Texture. The initial value is Modelview. Additionally, if the ARB_imaging extension is supported, Color is also accepted.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMatrixMode")]
@@ -6139,10 +5091,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify which matrix is the current matrix
///
- ///
- ///
- /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: GL_MODELVIEW, GL_PROJECTION, and GL_TEXTURE. The initial value is GL_MODELVIEW. Additionally, if the ARB_imaging extension is supported, GL_COLOR is also accepted.
- ///
+ ///
+ /// Specifies which matrix stack is the target for subsequent matrix operations. Three values are accepted: Modelview, Projection, and Texture. The initial value is Modelview. Additionally, if the ARB_imaging extension is supported, Color is also accepted.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMatrixMode")]
public static void MatrixMode(OpenTK.Graphics.ES11.MatrixMode mode) { throw new NotImplementedException(); }
@@ -6150,15 +5100,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4f")]
@@ -6167,30 +5122,38 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4f")]
public static void MultiTexCoord4(OpenTK.Graphics.ES11.TextureUnit target, Single s, Single t, Single r, Single q) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultiTexCoord4x")]
public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, int s, int t, int r, int q) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Multiply the current matrix with the specified matrix
///
- /// [length: 16]
- ///
- /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix.
- ///
+ /// [length: 16]
+ /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")]
[CLSCompliant(false)]
@@ -6199,10 +5162,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Multiply the current matrix with the specified matrix
///
- /// [length: 16]
- ///
- /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix.
- ///
+ /// [length: 16]
+ /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")]
[CLSCompliant(false)]
@@ -6211,26 +5172,27 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Multiply the current matrix with the specified matrix
///
- /// [length: 16]
- ///
- /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix.
- ///
+ /// [length: 16]
+ /// Points to 16 consecutive values that are used as the elements of a 4 times 4 column-major matrix.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixf")]
[CLSCompliant(false)]
public static unsafe void MultMatrix(Single* m) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ /// [length: 16]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")]
[CLSCompliant(false)]
public static void MultMatrixx(int[] m) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ /// [length: 16]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")]
[CLSCompliant(false)]
public static void MultMatrixx(ref int m) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ /// [length: 16]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glMultMatrixx")]
[CLSCompliant(false)]
public static unsafe void MultMatrixx(int* m) { throw new NotImplementedException(); }
@@ -6238,38 +5200,36 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the current normal vector
///
- ///
- ///
- /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1).
- ///
- ///
- ///
- ///
+ ///
+ /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1).
+ ///
+ ///
+ /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1).
+ ///
+ ///
+ /// Specify the , , and coordinates of the new current normal. The initial value of the current normal is the unit vector, (0, 0, 1).
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormal3f")]
public static void Normal3(Single nx, Single ny, Single nz) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormal3x")]
public static void Normal3x(int nx, int ny, int nz) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
@@ -6278,20 +5238,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
@@ -6303,20 +5257,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
@@ -6328,20 +5276,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
@@ -6353,20 +5295,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
@@ -6377,20 +5313,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
@@ -6398,20 +5328,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
[CLSCompliant(false)]
@@ -6422,20 +5346,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
[CLSCompliant(false)]
@@ -6446,20 +5364,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
[CLSCompliant(false)]
@@ -6470,20 +5382,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of normals
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, and GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Byte, Short, Int, Float, and Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive normals. If stride is 0, the normals are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: type,stride]
- ///
+ /// [length: type,stride]
/// Specifies a pointer to the first coordinate of the first normal in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glNormalPointer")]
public static void NormalPointer(OpenTK.Graphics.ES11.NormalPointerType type, Int32 stride, [InAttribute, OutAttribute] ref T2 pointer)
@@ -6493,39 +5399,57 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Multiply the current matrix with an orthographic matrix
///
- ///
- ///
+ ///
/// Specify the coordinates for the left and right vertical clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the left and right vertical clipping planes.
+ ///
+ ///
/// Specify the coordinates for the bottom and top horizontal clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the bottom and top horizontal clipping planes.
+ ///
+ ///
+ /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer.
+ ///
+ ///
/// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glOrthof")]
public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glOrthox")]
public static void Orthox(int l, int r, int b, int t, int n, int f) { throw new NotImplementedException(); }
///
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")]
[CLSCompliant(false)]
public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, int[] values) { throw new NotImplementedException(); }
///
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")]
[CLSCompliant(false)]
public static void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, ref int values) { throw new NotImplementedException(); }
///
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelMapx")]
[CLSCompliant(false)]
public static unsafe void PixelMapx(OpenTK.Graphics.ES11.All map, Int32 size, int* values) { throw new NotImplementedException(); }
@@ -6533,15 +5457,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set pixel storage modes
///
- ///
- ///
- /// Specifies the symbolic name of the parameter to be set. Six values affect the packing of pixel data into memory: GL_PACK_SWAP_BYTES, GL_PACK_LSB_FIRST, GL_PACK_ROW_LENGTH, GL_PACK_IMAGE_HEIGHT, GL_PACK_SKIP_PIXELS, GL_PACK_SKIP_ROWS, GL_PACK_SKIP_IMAGES, and GL_PACK_ALIGNMENT. Six more affect the unpacking of pixel data from memory: GL_UNPACK_SWAP_BYTES, GL_UNPACK_LSB_FIRST, GL_UNPACK_ROW_LENGTH, GL_UNPACK_IMAGE_HEIGHT, GL_UNPACK_SKIP_PIXELS, GL_UNPACK_SKIP_ROWS, GL_UNPACK_SKIP_IMAGES, and GL_UNPACK_ALIGNMENT.
- ///
+ ///
+ /// Specifies the symbolic name of the parameter to be set. One value affects the packing of pixel data into memory: PackAlignment. The other affects the unpacking of pixel data from memory: UnpackAlignment.
///
- ///
- ///
+ ///
/// Specifies the value that pname is set to.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPixelStorei")]
@@ -6550,40 +5470,29 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set pixel storage modes
///
- ///
- ///
- /// Specifies the symbolic name of the parameter to be set. Six values affect the packing of pixel data into memory: GL_PACK_SWAP_BYTES, GL_PACK_LSB_FIRST, GL_PACK_ROW_LENGTH, GL_PACK_IMAGE_HEIGHT, GL_PACK_SKIP_PIXELS, GL_PACK_SKIP_ROWS, GL_PACK_SKIP_IMAGES, and GL_PACK_ALIGNMENT. Six more affect the unpacking of pixel data from memory: GL_UNPACK_SWAP_BYTES, GL_UNPACK_LSB_FIRST, GL_UNPACK_ROW_LENGTH, GL_UNPACK_IMAGE_HEIGHT, GL_UNPACK_SKIP_PIXELS, GL_UNPACK_SKIP_ROWS, GL_UNPACK_SKIP_IMAGES, and GL_UNPACK_ALIGNMENT.
- ///
+ ///
+ /// Specifies the symbolic name of the parameter to be set. One value affects the packing of pixel data into memory: PackAlignment. The other affects the unpacking of pixel data from memory: UnpackAlignment.
///
- ///
- ///
+ ///
/// Specifies the value that pname is set to.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPixelStorei")]
public static void PixelStore(OpenTK.Graphics.ES11.PixelStoreParameter pname, Int32 param) { throw new NotImplementedException(); }
///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelStorex")]
public static void PixelStorex(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Specify point parameters
///
- ///
- ///
- /// Specifies a single-valued point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted.
- ///
+ ///
+ /// Specifies a single-valued point parameter. PointFadeThresholdSize, and PointSpriteCoordOrigin are accepted.
///
- ///
- ///
+ ///
/// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to.
- ///
- ///
- ///
- ///
- /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterf")]
public static void PointParameter(OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); }
@@ -6591,20 +5500,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify point parameters
///
- ///
- ///
- /// Specifies a single-valued point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted.
- ///
+ ///
+ /// Specifies a single-valued point parameter. PointFadeThresholdSize, and PointSpriteCoordOrigin are accepted.
///
- ///
- ///
+ /// [length: pname]
/// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to.
- ///
- ///
- ///
- ///
- /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")]
[CLSCompliant(false)]
@@ -6613,35 +5513,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify point parameters
///
- ///
- ///
- /// Specifies a single-valued point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted.
- ///
+ ///
+ /// Specifies a single-valued point parameter. PointFadeThresholdSize, and PointSpriteCoordOrigin are accepted.
///
- ///
- ///
+ /// [length: pname]
/// For glPointParameterf and glPointParameteri, specifies the value that pname will be set to.
- ///
- ///
- ///
- ///
- /// For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or values to be assigned to pname are stored.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterfv")]
[CLSCompliant(false)]
public static unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, Single* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterx")]
public static void PointParameterx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")]
[CLSCompliant(false)]
public static void PointParameterx(OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointParameterxv")]
[CLSCompliant(false)]
public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
@@ -6649,35 +5546,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify the diameter of rasterized points
///
- ///
- ///
+ ///
/// Specifies the diameter of rasterized points. The initial value is 1.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointSize")]
public static void PointSize(Single size) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPointSizex")]
public static void PointSizex(int size) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Set the scale and units used to calculate depth values
///
- ///
- ///
+ ///
/// Specifies a scale factor that is used to create a variable depth offset for each polygon. The initial value is 0.
- ///
///
- ///
- ///
+ ///
/// Is multiplied by an implementation-specific value to create a constant depth offset. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffset")]
public static void PolygonOffset(Single factor, Single units) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glPolygonOffsetx")]
public static void PolygonOffsetx(int factor, int units) { throw new NotImplementedException(); }
@@ -6694,30 +5588,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
@@ -6726,30 +5616,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
@@ -6761,30 +5647,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
@@ -6796,30 +5678,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
@@ -6831,30 +5709,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
@@ -6865,30 +5739,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [OutAttribute] IntPtr pixels) { throw new NotImplementedException(); }
@@ -6896,30 +5766,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
[CLSCompliant(false)]
@@ -6930,30 +5796,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
[CLSCompliant(false)]
@@ -6964,30 +5826,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
[CLSCompliant(false)]
@@ -6998,30 +5856,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Read a block of pixels from the frame buffer
///
- ///
- ///
+ ///
/// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the first pixel that is read from the frame buffer. This location is the lower left corner of a rectangular block of pixels.
+ ///
+ ///
/// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA.
- ///
+ ///
+ /// Specify the dimensions of the pixel rectangle. width and height of one correspond to a single pixel.
///
- ///
- ///
- /// Specifies the data type of the pixel data. Must be one of GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, and Rgba.
///
- ///
- ///
+ ///
+ /// Specifies the data type of the pixel data. Must be one of UnsignedByte, UnsignedShort565, UnsignedShort4444, or UnsignedShort5551.
+ ///
+ /// [length: format,type,width,height]
/// Returns the pixel data.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glReadPixels")]
public static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] ref T6 pixels)
@@ -7031,70 +5885,83 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Multiply the current matrix by a rotation matrix
///
- ///
- ///
+ ///
/// Specifies the angle of rotation, in degrees.
- ///
///
- ///
- ///
+ ///
+ /// Specify the x, y, and z coordinates of a vector, respectively.
+ ///
+ ///
+ /// Specify the x, y, and z coordinates of a vector, respectively.
+ ///
+ ///
/// Specify the x, y, and z coordinates of a vector, respectively.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glRotatef")]
public static void Rotate(Single angle, Single x, Single y, Single z) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glRotatex")]
public static void Rotatex(int angle, int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Specify multisample coverage parameters
///
- ///
- ///
- /// Specify a single floating-point sample coverage value. The value is clamped to the range [0 ,1]. The initial value is 1.0.
- ///
+ ///
+ /// Specify a single floating-point sample coverage value. The value is clamped to the range [0 ,1]. The initial value is 1.0.
///
- ///
- ///
- /// Specify a single boolean value representing if the coverage masks should be inverted. GL_TRUE and GL_FALSE are accepted. The initial value is GL_FALSE.
- ///
+ ///
+ /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glSampleCoverage")]
public static void SampleCoverage(Single value, bool invert) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glSampleCoveragex")]
public static void SampleCoveragex(int value, bool invert) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Multiply the current matrix by a general scaling matrix
///
- ///
- ///
+ ///
+ /// Specify scale factors along the x, y, and z axes, respectively.
+ ///
+ ///
+ /// Specify scale factors along the x, y, and z axes, respectively.
+ ///
+ ///
/// Specify scale factors along the x, y, and z axes, respectively.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScalef")]
public static void Scale(Single x, Single y, Single z) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScalex")]
public static void Scalex(int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Define the scissor box
///
- ///
- ///
+ ///
/// Specify the lower left corner of the scissor box. Initially (0, 0).
- ///
///
- ///
- ///
+ ///
+ /// Specify the lower left corner of the scissor box. Initially (0, 0).
+ ///
+ ///
+ /// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window.
+ ///
+ ///
/// Specify the width and height of the scissor box. When a GL context is first attached to a window, width and height are set to the dimensions of that window.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glScissor")]
public static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -7102,10 +5969,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Select flat or smooth shading
///
- ///
- ///
- /// Specifies a symbolic value representing a shading technique. Accepted values are GL_FLAT and GL_SMOOTH. The initial value is GL_SMOOTH.
- ///
+ ///
+ /// Specifies a symbolic value representing a shading technique. Accepted values are Flat and Smooth. The initial value is Smooth.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glShadeModel")]
@@ -7114,10 +5979,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Select flat or smooth shading
///
- ///
- ///
- /// Specifies a symbolic value representing a shading technique. Accepted values are GL_FLAT and GL_SMOOTH. The initial value is GL_SMOOTH.
- ///
+ ///
+ /// Specifies a symbolic value representing a shading technique. Accepted values are Flat and Smooth. The initial value is Smooth.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glShadeModel")]
public static void ShadeModel(OpenTK.Graphics.ES11.ShadingModel mode) { throw new NotImplementedException(); }
@@ -7125,20 +5988,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set front and back function and reference value for stencil testing
///
- ///
- ///
- /// Specifies the test function. Eight symbolic constants are valid: GL_NEVER, GL_LESS, GL_LEQUAL, GL_GREATER, GL_GEQUAL, GL_EQUAL, GL_NOTEQUAL, and GL_ALWAYS. The initial value is GL_ALWAYS.
- ///
+ ///
+ /// Specifies the test function. Eight symbolic constants are valid: Never, Less, Lequal, Greater, Gequal, Equal, Notequal, and Always. The initial value is Always.
///
- ///
- ///
- /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
- ///
+ ///
+ /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
///
- ///
- ///
+ ///
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")]
@@ -7148,20 +6005,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set front and back function and reference value for stencil testing
///
- ///
- ///
- /// Specifies the test function. Eight symbolic constants are valid: GL_NEVER, GL_LESS, GL_LEQUAL, GL_GREATER, GL_GEQUAL, GL_EQUAL, GL_NOTEQUAL, and GL_ALWAYS. The initial value is GL_ALWAYS.
- ///
+ ///
+ /// Specifies the test function. Eight symbolic constants are valid: Never, Less, Lequal, Greater, Gequal, Equal, Notequal, and Always. The initial value is Always.
///
- ///
- ///
- /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
- ///
+ ///
+ /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
///
- ///
- ///
+ ///
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")]
@@ -7171,20 +6022,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set front and back function and reference value for stencil testing
///
- ///
- ///
- /// Specifies the test function. Eight symbolic constants are valid: GL_NEVER, GL_LESS, GL_LEQUAL, GL_GREATER, GL_GEQUAL, GL_EQUAL, GL_NOTEQUAL, and GL_ALWAYS. The initial value is GL_ALWAYS.
- ///
+ ///
+ /// Specifies the test function. Eight symbolic constants are valid: Never, Less, Lequal, Greater, Gequal, Equal, Notequal, and Always. The initial value is Always.
///
- ///
- ///
- /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
- ///
+ ///
+ /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
///
- ///
- ///
+ ///
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")]
[CLSCompliant(false)]
@@ -7193,20 +6038,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set front and back function and reference value for stencil testing
///
- ///
- ///
- /// Specifies the test function. Eight symbolic constants are valid: GL_NEVER, GL_LESS, GL_LEQUAL, GL_GREATER, GL_GEQUAL, GL_EQUAL, GL_NOTEQUAL, and GL_ALWAYS. The initial value is GL_ALWAYS.
- ///
+ ///
+ /// Specifies the test function. Eight symbolic constants are valid: Never, Less, Lequal, Greater, Gequal, Equal, Notequal, and Always. The initial value is Always.
///
- ///
- ///
- /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
- ///
+ ///
+ /// Specifies the reference value for the stencil test. ref is clamped to the range [0, 2 sup n - 1], where is the number of bitplanes in the stencil buffer. The initial value is 0.
///
- ///
- ///
+ ///
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")]
[CLSCompliant(false)]
@@ -7215,10 +6054,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Control the front and back writing of individual bits in the stencil planes
///
- ///
- ///
+ ///
/// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")]
[CLSCompliant(false)]
@@ -7227,10 +6064,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Control the front and back writing of individual bits in the stencil planes
///
- ///
- ///
+ ///
/// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilMask")]
[CLSCompliant(false)]
@@ -7239,20 +6074,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set front and back stencil test actions
///
- ///
- ///
- /// Specifies the action to take when the stencil test fails. Eight symbolic constants are accepted: GL_KEEP, GL_ZERO, GL_REPLACE, GL_INCR, GL_INCR_WRAP, GL_DECR, GL_DECR_WRAP, and GL_INVERT. The initial value is GL_KEEP.
- ///
+ ///
+ /// Specifies the action to take when the stencil test fails. Eight symbolic constants are accepted: Keep, Zero, Replace, Incr, IncrWrap, Decr, DecrWrap, and Invert. The initial value is Keep.
///
- ///
- ///
- /// Specifies the stencil action when the stencil test passes, but the depth test fails. dpfail accepts the same symbolic constants as sfail. The initial value is GL_KEEP.
- ///
+ ///
+ /// Specifies the stencil action when the stencil test passes, but the depth test fails. dpfail accepts the same symbolic constants as sfail. The initial value is Keep.
///
- ///
- ///
- /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is GL_KEEP.
- ///
+ ///
+ /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilOp")]
@@ -7261,20 +6090,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set front and back stencil test actions
///
- ///
- ///
- /// Specifies the action to take when the stencil test fails. Eight symbolic constants are accepted: GL_KEEP, GL_ZERO, GL_REPLACE, GL_INCR, GL_INCR_WRAP, GL_DECR, GL_DECR_WRAP, and GL_INVERT. The initial value is GL_KEEP.
- ///
+ ///
+ /// Specifies the action to take when the stencil test fails. Eight symbolic constants are accepted: Keep, Zero, Replace, Incr, IncrWrap, Decr, DecrWrap, and Invert. The initial value is Keep.
///
- ///
- ///
- /// Specifies the stencil action when the stencil test passes, but the depth test fails. dpfail accepts the same symbolic constants as sfail. The initial value is GL_KEEP.
- ///
+ ///
+ /// Specifies the stencil action when the stencil test passes, but the depth test fails. dpfail accepts the same symbolic constants as sfail. The initial value is Keep.
///
- ///
- ///
- /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is GL_KEEP.
- ///
+ ///
+ /// Specifies the stencil action when both the stencil test and the depth test pass, or when the stencil test passes and either there is no depth buffer or depth testing is not enabled. dppass accepts the same symbolic constants as sfail. The initial value is Keep.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilOp")]
public static void StencilOp(OpenTK.Graphics.ES11.StencilOp fail, OpenTK.Graphics.ES11.StencilOp zfail, OpenTK.Graphics.ES11.StencilOp zpass) { throw new NotImplementedException(); }
@@ -7282,25 +6105,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
@@ -7309,25 +6124,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
@@ -7339,25 +6146,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
@@ -7369,25 +6168,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
@@ -7399,25 +6190,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
@@ -7428,25 +6211,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
@@ -7454,25 +6229,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
[CLSCompliant(false)]
@@ -7483,25 +6250,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
[CLSCompliant(false)]
@@ -7512,25 +6271,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
[CLSCompliant(false)]
@@ -7541,25 +6292,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of texture coordinates
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per array element. Must be 1, 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each texture coordinate. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each texture coordinate. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive texture coordinate sets. If stride is 0, the array elements are understood to be tightly packed. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first texture coordinate set in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexCoordPointer")]
public static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.TexCoordPointerType type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
@@ -7569,20 +6312,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ ///
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvf")]
@@ -7591,20 +6328,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ ///
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvf")]
public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Single param) { throw new NotImplementedException(); }
@@ -7612,20 +6343,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")]
@@ -7635,20 +6360,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")]
@@ -7658,20 +6377,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")]
[CLSCompliant(false)]
@@ -7680,20 +6393,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvfv")]
[CLSCompliant(false)]
@@ -7702,20 +6409,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ ///
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvi")]
@@ -7724,20 +6425,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ ///
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvi")]
public static void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32 param) { throw new NotImplementedException(); }
@@ -7745,20 +6440,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")]
@@ -7768,20 +6457,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")]
@@ -7791,20 +6474,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")]
[CLSCompliant(false)]
@@ -7813,35 +6490,38 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture environment parameters
///
- ///
- ///
- /// Specifies a texture environment. May be GL_TEXTURE_ENV, GL_TEXTURE_FILTER_CONTROL or GL_POINT_SPRITE.
- ///
+ ///
+ /// Specifies a texture environment. May be TextureEnv, TextureFilterControl or PointSprite.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture environment parameter. May be either GL_TEXTURE_ENV_MODE, GL_TEXTURE_LOD_BIAS, GL_COMBINE_RGB, GL_COMBINE_ALPHA, GL_SRC0_RGB, GL_SRC1_RGB, GL_SRC2_RGB, GL_SRC0_ALPHA, GL_SRC1_ALPHA, GL_SRC2_ALPHA, GL_OPERAND0_RGB, GL_OPERAND1_RGB, GL_OPERAND2_RGB, GL_OPERAND0_ALPHA, GL_OPERAND1_ALPHA, GL_OPERAND2_ALPHA, GL_RGB_SCALE, GL_ALPHA_SCALE, or GL_COORD_REPLACE.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture environment parameter. May be either TextureEnvMode, TextureLodBias, CombineRgb, CombineAlpha, Src0Rgb, Src1Rgb, Src2Rgb, Src0Alpha, Src1Alpha, Src2Alpha, Operand0Rgb, Operand1Rgb, Operand2Rgb, Operand0Alpha, Operand1Alpha, Operand2Alpha, RgbScale, AlphaScale, or CoordReplace.
///
- ///
- ///
- /// Specifies a single symbolic constant, one of GL_ADD, GL_ADD_SIGNED, GL_INTERPOLATE, GL_MODULATE, GL_DECAL, GL_BLEND, GL_REPLACE, GL_SUBTRACT, GL_COMBINE, GL_TEXTURE, GL_CONSTANT, GL_PRIMARY_COLOR, GL_PREVIOUS, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the GL_RGB_SCALE or GL_ALPHA_SCALE.
- ///
+ /// [length: pname]
+ /// Specifies a single symbolic constant, one of Add, AddSigned, Interpolate, Modulate, Decal, Blend, Replace, Subtract, Combine, Texture, Constant, PrimaryColor, Previous, SrcColor, OneMinusSrcColor, SrcAlpha, OneMinusSrcAlpha, a single boolean value for the point sprite texture coordinate replacement, a single floating-point value for the texture level-of-detail bias, or 1.0, 2.0, or 4.0 when specifying the RgbScale or AlphaScale.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnviv")]
[CLSCompliant(false)]
public static unsafe void TexEnv(OpenTK.Graphics.ES11.TextureEnvTarget target, OpenTK.Graphics.ES11.TextureEnvParameter pname, Int32* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvx")]
public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")]
[CLSCompliant(false)]
public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexEnvxv")]
[CLSCompliant(false)]
public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
@@ -7849,50 +6529,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
@@ -7901,50 +6563,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
@@ -7956,50 +6600,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
@@ -8011,50 +6637,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
@@ -8066,50 +6674,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
@@ -8120,50 +6710,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, IntPtr pixels) { throw new NotImplementedException(); }
@@ -8171,50 +6743,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
[CLSCompliant(false)]
@@ -8225,50 +6779,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
[CLSCompliant(false)]
@@ -8279,50 +6815,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
[CLSCompliant(false)]
@@ -8333,50 +6851,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
- /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image. If target is GL_TEXTURE_RECTANGLE or GL_PROXY_TEXTURE_RECTANGLE, level must be 0.
- ///
+ ///
+ /// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
///
- ///
- ///
- /// Specifies the number of color components in the texture. Must be one of base internal formats given in Table 1, one of the sized internal formats given in Table 2, or one of the compressed internal formats given in Table 3, below.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, Rgba.
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support texture images that are at least 1024 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image, or the number of layers in a texture array, in the case of the GL_TEXTURE_1D_ARRAY and GL_PROXY_TEXTURE_1D_ARRAY targets. All implementations support 2D texture images that are at least 1024 texels high, and texture arrays that are at least 256 layers deep.
- ///
+ ///
+ /// Specifies the height of the texture image All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_RED_INTEGER, GL_RG_INTEGER, GL_RGB_INTEGER, GL_BGR_INTEGER, GL_RGBA_INTEGER, GL_BGRA_INTEGER, GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL.
- ///
+ ///
+ /// Specifies the format of the texel data. Must match internalformat. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the texel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexImage2D")]
public static void TexImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] ref T8 pixels)
@@ -8386,28 +6886,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ ///
+ /// Specifies the value of pname.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterf")]
@@ -8416,28 +6902,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ ///
+ /// Specifies the value of pname.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterf")]
public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Single param) { throw new NotImplementedException(); }
@@ -8445,28 +6917,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")]
@@ -8476,28 +6934,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")]
@@ -8507,28 +6951,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")]
[CLSCompliant(false)]
@@ -8537,28 +6967,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterfv")]
[CLSCompliant(false)]
@@ -8567,28 +6983,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ ///
+ /// Specifies the value of pname.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteri")]
@@ -8597,28 +6999,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ ///
+ /// Specifies the value of pname.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteri")]
public static void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32 param) { throw new NotImplementedException(); }
@@ -8626,28 +7014,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")]
@@ -8657,28 +7031,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")]
@@ -8688,28 +7048,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")]
[CLSCompliant(false)]
@@ -8718,43 +7064,38 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set texture parameters
///
- ///
- ///
- /// Specifies the target texture, which must be either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit, which must be either Texture2D or TextureCubeMap.
///
- ///
- ///
- /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: GL_DEPTH_STENCIL_TEXTURE_MODE, GL_TEXTURE_BASE_LEVEL, GL_TEXTURE_COMPARE_FUNC, GL_TEXTURE_COMPARE_MODE, GL_TEXTURE_LOD_BIAS, GL_TEXTURE_MIN_FILTER, GL_TEXTURE_MAG_FILTER, GL_TEXTURE_MIN_LOD, GL_TEXTURE_MAX_LOD, GL_TEXTURE_MAX_LEVEL, GL_TEXTURE_SWIZZLE_R, GL_TEXTURE_SWIZZLE_G, GL_TEXTURE_SWIZZLE_B, GL_TEXTURE_SWIZZLE_A, GL_TEXTURE_WRAP_S, GL_TEXTURE_WRAP_T, or GL_TEXTURE_WRAP_R.
- ///
- ///
- /// For the vector commands (glTexParameter*v), pname can also be one of GL_TEXTURE_BORDER_COLOR or GL_TEXTURE_SWIZZLE_RGBA.
- ///
+ ///
+ /// Specifies the symbolic name of a single-valued texture parameter. pname can be one of the following: TextureMinFilter, TextureMagFilter, TextureWrapS, or TextureWrapT.
///
- ///
- ///
- /// For the scalar commands, specifies the value of pname.
- ///
- ///
- ///
- ///
- /// For the vector commands, specifies a pointer to an array where the value or values of pname are stored.
- ///
+ /// [length: pname]
+ /// Specifies the value of pname.
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameteriv")]
[CLSCompliant(false)]
public static unsafe void TexParameter(OpenTK.Graphics.ES11.TextureTarget target, OpenTK.Graphics.ES11.TextureParameterName pname, Int32* @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterx")]
public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")]
[CLSCompliant(false)]
public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexParameterxv")]
[CLSCompliant(false)]
public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
@@ -8762,50 +7103,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
@@ -8814,50 +7137,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
@@ -8869,50 +7174,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
@@ -8924,50 +7211,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
@@ -8979,50 +7248,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
@@ -9033,50 +7284,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, IntPtr pixels) { throw new NotImplementedException(); }
@@ -9084,50 +7317,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
[CLSCompliant(false)]
@@ -9138,50 +7353,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
[CLSCompliant(false)]
@@ -9192,50 +7389,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
[CLSCompliant(false)]
@@ -9246,50 +7425,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Specify a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
- /// Specifies the format of the pixel data. The following symbolic values are accepted: GL_RED, GL_RG, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_DEPTH_COMPONENT, and GL_STENCIL_INDEX.
- ///
+ ///
+ /// Specifies the format of the pixel data. The following symbolic values are accepted: Alpha, Rgb, Rgba, Luminance, and LuminanceAlpha.
///
- ///
- ///
- /// Specifies the data type of the pixel data. The following symbolic values are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV.
- ///
+ ///
+ /// Specifies the data type of the pixel data. The following symbolic values are accepted: UnsignedByte, UnsignedShort565, UnsignedShort4444, and UnsignedShort5551.
///
- ///
- ///
+ /// [length: format,type,width,height]
/// Specifies a pointer to the image data in memory.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTexSubImage2D")]
public static void TexSubImage2D(OpenTK.Graphics.ES11.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.PixelFormat format, OpenTK.Graphics.ES11.PixelType type, [InAttribute, OutAttribute] ref T8 pixels)
@@ -9299,40 +7460,39 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Multiply the current matrix by a translation matrix
///
- ///
- ///
+ ///
+ /// Specify the x, y, and z coordinates of a translation vector.
+ ///
+ ///
+ /// Specify the x, y, and z coordinates of a translation vector.
+ ///
+ ///
/// Specify the x, y, and z coordinates of a translation vector.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTranslatef")]
public static void Translate(Single x, Single y, Single z) { throw new NotImplementedException(); }
/// [requires: v1.0]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glTranslatex")]
public static void Translatex(int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
@@ -9341,25 +7501,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
@@ -9371,25 +7523,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
@@ -9401,25 +7545,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
@@ -9431,25 +7567,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
@@ -9460,25 +7588,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
@@ -9486,25 +7606,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
[CLSCompliant(false)]
@@ -9515,25 +7627,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
[CLSCompliant(false)]
@@ -9544,25 +7648,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
[CLSCompliant(false)]
@@ -9573,25 +7669,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Define an array of vertex data
///
- ///
- ///
+ ///
/// Specifies the number of coordinates per vertex. Must be 2, 3, or 4. The initial value is 4.
- ///
///
- ///
- ///
- /// Specifies the data type of each coordinate in the array. Symbolic constants GL_SHORT, GL_INT, GL_FLOAT, or GL_DOUBLE are accepted. The initial value is GL_FLOAT.
- ///
+ ///
+ /// Specifies the data type of each coordinate in the array. Symbolic constants Short, Int, Float, or Double are accepted. The initial value is Float.
///
- ///
- ///
+ ///
/// Specifies the byte offset between consecutive vertices. If stride is 0, the vertices are understood to be tightly packed in the array. The initial value is 0.
- ///
///
- /// [length: size,type,stride]
- ///
+ /// [length: size,type,stride]
/// Specifies a pointer to the first coordinate of the first vertex in the array. The initial value is 0.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glVertexPointer")]
public static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.VertexPointerType type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
@@ -9601,15 +7689,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: v1.0]
/// Set the viewport
///
- ///
- ///
+ ///
/// Specify the lower left corner of the viewport rectangle, in pixels. The initial value is (0,0).
- ///
///
- ///
- ///
+ ///
+ /// Specify the lower left corner of the viewport rectangle, in pixels. The initial value is (0,0).
+ ///
+ ///
+ /// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window.
+ ///
+ ///
/// Specify the width and height of the viewport. When a GL context is first attached to a window, width and height are set to the dimensions of that window.
- ///
///
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glViewport")]
public static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -9619,15 +7709,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_blend_minmax]
/// Specify the equation used for both the RGB blend equation and the Alpha blend equation
///
- ///
- ///
- /// for glBlendEquationi, specifies the index of the draw buffer for which to set the blend equation.
- ///
- ///
- ///
- ///
- /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")]
@@ -9636,30 +7719,32 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_blend_minmax]
/// Specify the equation used for both the RGB blend equation and the Alpha blend equation
///
- ///
- ///
- /// for glBlendEquationi, specifies the index of the draw buffer for which to set the blend equation.
- ///
- ///
- ///
- ///
- /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")]
public static void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode) { throw new NotImplementedException(); }
/// [requires: EXT_discard_framebuffer]
+ ///
+ ///
+ /// [length: numAttachments]
[AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")]
[CLSCompliant(false)]
public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, OpenTK.Graphics.ES11.All[] attachments) { throw new NotImplementedException(); }
/// [requires: EXT_discard_framebuffer]
+ ///
+ ///
+ /// [length: numAttachments]
[AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")]
[CLSCompliant(false)]
public static void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, ref OpenTK.Graphics.ES11.All attachments) { throw new NotImplementedException(); }
/// [requires: EXT_discard_framebuffer]
+ ///
+ ///
+ /// [length: numAttachments]
[AutoGenerated(Category = "EXT_discard_framebuffer", Version = "", EntryPoint = "glDiscardFramebufferEXT")]
[CLSCompliant(false)]
public static unsafe void DiscardFramebuffer(OpenTK.Graphics.ES11.All target, Int32 numAttachments, OpenTK.Graphics.ES11.All* attachments) { throw new NotImplementedException(); }
@@ -9667,30 +7752,36 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_map_buffer_range]
/// Indicate modifications to a range of a mapped buffer
///
- ///
- ///
- /// Specifies the target of the flush operation. target must be GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target of the flush operation. target must be ArrayBuffer, CopyReadBuffer, CopyWriteBuffer, DispatchIndirectBuffer, DrawIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer, or UniformBuffer.
///
- ///
- ///
+ ///
/// Specifies the start of the buffer subrange, in basic machine units.
- ///
///
- ///
- ///
+ ///
/// Specifies the length of the buffer subrange, in basic machine units.
- ///
///
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glFlushMappedBufferRangeEXT")]
public static void FlushMappedBufferRange(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr length) { throw new NotImplementedException(); }
/// [requires: EXT_multisampled_render_to_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")]
[CLSCompliant(false)]
public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); }
/// [requires: EXT_multisampled_render_to_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleEXT")]
[CLSCompliant(false)]
public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); }
@@ -9700,61 +7791,109 @@ namespace OpenTK.Graphics.ES11
public static OpenTK.Graphics.ES11.All GetGraphicsResetStatus() { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")]
[CLSCompliant(false)]
public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")]
[CLSCompliant(false)]
public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")]
[CLSCompliant(false)]
public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")]
[CLSCompliant(false)]
public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single[] @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")]
[CLSCompliant(false)]
public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Single @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformfvEXT")]
[CLSCompliant(false)]
public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Single* @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")]
[CLSCompliant(false)]
public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")]
[CLSCompliant(false)]
public static void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")]
[CLSCompliant(false)]
public static unsafe void GetnUniform(Int32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")]
[CLSCompliant(false)]
public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")]
[CLSCompliant(false)]
public static void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glGetnUniformivEXT")]
[CLSCompliant(false)]
public static unsafe void GetnUniform(UInt32 program, Int32 location, Int32 bufSize, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
@@ -9762,25 +7901,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_map_buffer_range]
/// Map a section of a buffer object's data store
///
- ///
- ///
+ ///
/// Specifies a binding to which the target buffer is bound.
- ///
///
- ///
- ///
+ ///
/// Specifies a the starting offset within the buffer of the range to be mapped.
- ///
///
- ///
- ///
+ ///
/// Specifies a length of the range to be mapped.
- ///
///
- ///
- ///
+ ///
/// Specifies a combination of access flags indicating the desired access to the range.
- ///
///
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")]
[CLSCompliant(false)]
@@ -9789,25 +7920,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_map_buffer_range]
/// Map a section of a buffer object's data store
///
- ///
- ///
+ ///
/// Specifies a binding to which the target buffer is bound.
- ///
///
- ///
- ///
+ ///
/// Specifies a the starting offset within the buffer of the range to be mapped.
- ///
///
- ///
- ///
+ ///
/// Specifies a length of the range to be mapped.
- ///
///
- ///
- ///
+ ///
/// Specifies a combination of access flags indicating the desired access to the range.
- ///
///
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")]
[CLSCompliant(false)]
@@ -9816,25 +7939,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of starting indices in the enabled arrays.
- ///
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the first and count
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")]
@@ -9844,25 +7959,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of starting indices in the enabled arrays.
- ///
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the first and count
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")]
@@ -9872,25 +7979,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of starting indices in the enabled arrays.
- ///
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the first and count
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")]
@@ -9900,25 +7999,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of starting indices in the enabled arrays.
- ///
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the first and count
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")]
[CLSCompliant(false)]
@@ -9927,25 +8018,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of starting indices in the enabled arrays.
- ///
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the first and count
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")]
[CLSCompliant(false)]
@@ -9954,25 +8037,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of starting indices in the enabled arrays.
- ///
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the first and count
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawArraysEXT")]
[CLSCompliant(false)]
@@ -9981,30 +8056,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10014,30 +8079,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10049,30 +8104,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10084,30 +8129,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10119,30 +8154,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10154,30 +8179,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10187,30 +8202,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10222,30 +8227,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10257,30 +8252,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10292,30 +8277,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10327,30 +8302,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10360,30 +8325,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10395,30 +8350,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10430,30 +8375,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10465,30 +8400,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
@@ -10500,30 +8425,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10532,30 +8447,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10566,30 +8471,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10600,30 +8495,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10634,30 +8519,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10668,30 +8543,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10700,30 +8565,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10734,30 +8589,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10768,30 +8613,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10802,30 +8637,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10836,30 +8661,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10868,30 +8683,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10902,30 +8707,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10936,30 +8731,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -10970,30 +8755,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multi_draw_arrays]
/// Render multiple sets of primitives by specifying indices of array data elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Points to an array of the elements counts.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: primcount]
- ///
+ /// [length: primcount]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the count and indices arrays.
- ///
///
[AutoGenerated(Category = "EXT_multi_draw_arrays", Version = "", EntryPoint = "glMultiDrawElementsEXT")]
[CLSCompliant(false)]
@@ -11002,10 +8777,26 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")]
public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [OutAttribute] IntPtr data) { throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")]
[CLSCompliant(false)]
public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[] data)
@@ -11013,6 +8804,14 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")]
[CLSCompliant(false)]
public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,] data)
@@ -11020,6 +8819,14 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")]
[CLSCompliant(false)]
public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] T7[,,] data)
@@ -11027,6 +8834,14 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: EXT_robustness]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "EXT_robustness", Version = "", EntryPoint = "glReadnPixelsEXT")]
public static void ReadnPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, Int32 bufSize, [InAttribute, OutAttribute] ref T7 data)
where T7 : struct
@@ -11035,30 +8850,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_multisampled_render_to_texture]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[AutoGenerated(Category = "EXT_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleEXT")]
public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -11066,25 +8871,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_texture_storage]
/// Simultaneously specify storage for all levels of a one-dimensional texture
///
- ///
- ///
- /// Specify the target of the operation. target must be either GL_TEXTURE_1D or GL_PROXY_TEXTURE_1D.
- ///
+ ///
+ /// Specify the target of the operation. target must be either Texture1D or ProxyTexture1D.
///
- ///
- ///
+ ///
/// Specify the number of texture levels.
- ///
///
- ///
- ///
+ ///
/// Specifies the sized internal format to be used to store texture image data.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture, in texels.
- ///
///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage1DEXT")]
public static void TexStorage1D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); }
@@ -11092,30 +8889,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_texture_storage]
/// Simultaneously specify storage for all levels of a two-dimensional or one-dimensional array texture
///
- ///
- ///
- /// Specify the target of the operation. target must be one of GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_RECTANGLE, GL_PROXY_TEXTURE_RECTANGLE, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specify the target of the operation. target must be one of Texture2D, ProxyTexture2D, Texture1DArray, ProxyTexture1DArray, TextureRectangle, ProxyTextureRectangle, or ProxyTextureCubeMap.
///
- ///
- ///
+ ///
/// Specify the number of texture levels.
- ///
///
- ///
- ///
+ ///
/// Specifies the sized internal format to be used to store texture image data.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture, in texels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture, in texels.
- ///
///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage2DEXT")]
public static void TexStorage2D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -11123,65 +8910,89 @@ namespace OpenTK.Graphics.ES11
/// [requires: EXT_texture_storage]
/// Simultaneously specify storage for all levels of a three-dimensional, two-dimensional array or cube-map array texture
///
- ///
- ///
- /// Specify the target of the operation. target must be one of GL_TEXTURE_3D, GL_PROXY_TEXTURE_3D, GL_TEXTURE_2D_ARRAY, GL_PROXY_TEXTURE_2D_ARRAY, GL_TEXTURE_CUBE_ARRAY, or GL_PROXY_TEXTURE_CUBE_ARRAY.
- ///
+ ///
+ /// Specify the target of the operation. target must be one of Texture3D, ProxyTexture3D, Texture2DArray, ProxyTexture2DArray, TextureCubeArray, or ProxyTextureCubeArray.
///
- ///
- ///
+ ///
/// Specify the number of texture levels.
- ///
///
- ///
- ///
+ ///
/// Specifies the sized internal format to be used to store texture image data.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture, in texels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture, in texels.
- ///
///
- ///
- ///
+ ///
/// Specifies the depth of the texture, in texels.
- ///
///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTexStorage3DEXT")]
public static void TexStorage3D(OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); }
/// [requires: EXT_texture_storage]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")]
[CLSCompliant(false)]
public static void TextureStorage1D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); }
/// [requires: EXT_texture_storage]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage1DEXT")]
[CLSCompliant(false)]
public static void TextureStorage1D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width) { throw new NotImplementedException(); }
/// [requires: EXT_texture_storage]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")]
[CLSCompliant(false)]
public static void TextureStorage2D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
/// [requires: EXT_texture_storage]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage2DEXT")]
[CLSCompliant(false)]
public static void TextureStorage2D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
/// [requires: EXT_texture_storage]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")]
[CLSCompliant(false)]
public static void TextureStorage3D(Int32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); }
/// [requires: EXT_texture_storage]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "EXT_texture_storage", Version = "", EntryPoint = "glTextureStorage3DEXT")]
[CLSCompliant(false)]
public static void TextureStorage3D(UInt32 texture, OpenTK.Graphics.ES11.All target, Int32 levels, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 depth) { throw new NotImplementedException(); }
@@ -11193,15 +9004,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: IMG_user_clip_plane]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- ///
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")]
[CLSCompliant(false)]
@@ -11210,15 +9017,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: IMG_user_clip_plane]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- ///
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")]
[CLSCompliant(false)]
@@ -11227,41 +9030,55 @@ namespace OpenTK.Graphics.ES11
/// [requires: IMG_user_clip_plane]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- ///
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanefIMG")]
[CLSCompliant(false)]
public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All p, Single* eqn) { throw new NotImplementedException(); }
/// [requires: IMG_user_clip_plane]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")]
[CLSCompliant(false)]
public static void ClipPlanex(OpenTK.Graphics.ES11.All p, int[] eqn) { throw new NotImplementedException(); }
/// [requires: IMG_user_clip_plane]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")]
[CLSCompliant(false)]
public static void ClipPlanex(OpenTK.Graphics.ES11.All p, ref int eqn) { throw new NotImplementedException(); }
/// [requires: IMG_user_clip_plane]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "IMG_user_clip_plane", Version = "", EntryPoint = "glClipPlanexIMG")]
[CLSCompliant(false)]
public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All p, int* eqn) { throw new NotImplementedException(); }
/// [requires: IMG_multisampled_render_to_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")]
[CLSCompliant(false)]
public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); }
/// [requires: IMG_multisampled_render_to_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glFramebufferTexture2DMultisampleIMG")]
[CLSCompliant(false)]
public static void FramebufferTexture2DMultisample(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level, Int32 samples) { throw new NotImplementedException(); }
@@ -11269,30 +9086,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: IMG_multisampled_render_to_texture]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[AutoGenerated(Category = "IMG_multisampled_render_to_texture", Version = "", EntryPoint = "glRenderbufferStorageMultisampleIMG")]
public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES11.All target, Int32 samples, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -11302,51 +9109,67 @@ namespace OpenTK.Graphics.ES11
public static partial class NV
{
/// [requires: NV_fence]
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static void DeleteFence(Int32 fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static void DeleteFence(UInt32 fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static void DeleteFences(Int32 n, Int32[] fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static void DeleteFences(Int32 n, ref Int32 fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static unsafe void DeleteFences(Int32 n, Int32* fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static void DeleteFences(Int32 n, UInt32[] fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static void DeleteFences(Int32 n, ref UInt32 fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glDeleteFencesNV")]
[CLSCompliant(false)]
public static unsafe void DeleteFences(Int32 n, UInt32* fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")]
[CLSCompliant(false)]
public static void FinishFence(Int32 fence) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glFinishFenceNV")]
[CLSCompliant(false)]
public static void FinishFence(UInt32 fence) { throw new NotImplementedException(); }
@@ -11357,91 +9180,129 @@ namespace OpenTK.Graphics.ES11
public static Int32 GenFence() { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")]
[CLSCompliant(false)]
public static void GenFences(Int32 n, [OutAttribute] Int32[] fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")]
[CLSCompliant(false)]
public static void GenFences(Int32 n, [OutAttribute] out Int32 fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")]
[CLSCompliant(false)]
public static unsafe void GenFences(Int32 n, [OutAttribute] Int32* fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")]
[CLSCompliant(false)]
public static void GenFences(Int32 n, [OutAttribute] UInt32[] fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")]
[CLSCompliant(false)]
public static void GenFences(Int32 n, [OutAttribute] out UInt32 fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGenFencesNV")]
[CLSCompliant(false)]
public static unsafe void GenFences(Int32 n, [OutAttribute] UInt32* fences) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")]
[CLSCompliant(false)]
public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")]
[CLSCompliant(false)]
public static void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")]
[CLSCompliant(false)]
public static unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")]
[CLSCompliant(false)]
public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")]
[CLSCompliant(false)]
public static void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glGetFenceivNV")]
[CLSCompliant(false)]
public static unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")]
[CLSCompliant(false)]
public static bool IsFence(Int32 fence) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glIsFenceNV")]
[CLSCompliant(false)]
public static bool IsFence(UInt32 fence) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")]
[CLSCompliant(false)]
public static void SetFence(Int32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glSetFenceNV")]
[CLSCompliant(false)]
public static void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")]
[CLSCompliant(false)]
public static bool TestFence(Int32 fence) { throw new NotImplementedException(); }
/// [requires: NV_fence]
+ ///
[AutoGenerated(Category = "NV_fence", Version = "", EntryPoint = "glTestFenceNV")]
[CLSCompliant(false)]
public static bool TestFence(UInt32 fence) { throw new NotImplementedException(); }
@@ -11451,76 +9312,64 @@ namespace OpenTK.Graphics.ES11
public static partial class Oes
{
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAccumxOES")]
public static void Accumx(OpenTK.Graphics.ES11.All op, int value) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glAlphaFuncxOES")]
public static void AlphaFuncx(OpenTK.Graphics.ES11.All func, int @ref) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Bind a framebuffer to a framebuffer target
+ /// Bind a named framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target of the binding operation.
- ///
+ ///
+ /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the name of the framebuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a framebuffer object.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")]
[CLSCompliant(false)]
public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Bind a framebuffer to a framebuffer target
+ /// Bind a named framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target of the binding operation.
- ///
+ ///
+ /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the name of the framebuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a framebuffer object.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindFramebufferOES")]
[CLSCompliant(false)]
public static void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Bind a renderbuffer to a renderbuffer target
+ /// Bind a named renderbuffer object
///
- ///
- ///
- /// Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of the renderbuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a renderbuffer object.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")]
[CLSCompliant(false)]
public static void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Bind a renderbuffer to a renderbuffer target
+ /// Bind a named renderbuffer object
///
- ///
- ///
- /// Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of the renderbuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a renderbuffer object.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glBindRenderbufferOES")]
[CLSCompliant(false)]
@@ -11529,10 +9378,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Bind a vertex array object
///
- ///
- ///
+ ///
/// Specifies the name of the vertex array to bind.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")]
[CLSCompliant(false)]
@@ -11541,46 +9388,62 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Bind a vertex array object
///
- ///
- ///
+ ///
/// Specifies the name of the vertex array to bind.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glBindVertexArrayOES")]
[CLSCompliant(false)]
public static void BindVertexArray(UInt32 array) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: width,height]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")]
[CLSCompliant(false)]
public static void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, Byte[] bitmap) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: width,height]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")]
[CLSCompliant(false)]
public static void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, ref Byte bitmap) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ /// [length: width,height]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBitmapxOES")]
[CLSCompliant(false)]
public static unsafe void Bitmapx(Int32 width, Int32 height, int xorig, int yorig, int xmove, int ymove, Byte* bitmap) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glBlendColorxOES")]
public static void BlendColorx(int red, int green, int blue, int alpha) { throw new NotImplementedException(); }
/// [requires: OES_blend_subtract]
/// Specify the equation used for both the RGB blend equation and the Alpha blend equation
///
- ///
- ///
- /// for glBlendEquationi, specifies the index of the draw buffer for which to set the blend equation.
- ///
- ///
- ///
- ///
- /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[AutoGenerated(Category = "OES_blend_subtract", Version = "", EntryPoint = "glBlendEquationOES")]
public static void BlendEquation(OpenTK.Graphics.ES11.All mode) { throw new NotImplementedException(); }
@@ -11588,20 +9451,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_blend_equation_separate]
/// Set the RGB blend equation and the alpha blend equation separately
///
- ///
- ///
- /// for glBlendEquationSeparatei, specifies the index of the draw buffer for which to set the blend equations.
- ///
+ ///
+ /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
- ///
- ///
- /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
- ///
- ///
- ///
- /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[AutoGenerated(Category = "OES_blend_equation_separate", Version = "", EntryPoint = "glBlendEquationSeparateOES")]
public static void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha) { throw new NotImplementedException(); }
@@ -11609,80 +9463,68 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_blend_func_separate]
/// Specify pixel arithmetic for RGB and alpha components separately
///
- ///
- ///
- /// For glBlendFuncSeparatei, specifies the index of the draw buffer for which to set the blend functions.
- ///
+ ///
+ /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, and blue blending factors are computed. The initial value is GL_ONE.
- ///
+ ///
+ /// Specifies how the red, green, and blue destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
- ///
- ///
- /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One.
///
- ///
- ///
- /// Specified how the alpha source blending factor is computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero.
///
[AutoGenerated(Category = "OES_blend_func_separate", Version = "", EntryPoint = "glBlendFuncSeparateOES")]
public static void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Check the completeness status of a framebuffer
+ /// Return the framebuffer completeness status of a framebuffer object
///
- ///
- ///
- /// Specify the target of the framebuffer completeness check.
- ///
+ ///
+ /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glCheckFramebufferStatusOES")]
public static OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearAccumxOES")]
public static void ClearAccumx(int red, int green, int blue, int alpha) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearColorxOES")]
public static void ClearColorx(int red, int green, int blue, int alpha) { throw new NotImplementedException(); }
/// [requires: OES_single_precision]
/// Specify the clear value for the depth buffer
///
- ///
- ///
+ ///
/// Specifies the depth value used when the depth buffer is cleared. The initial value is 1.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClearDepthfOES")]
public static void ClearDepth(Single depth) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClearDepthxOES")]
public static void ClearDepthx(int depth) { throw new NotImplementedException(); }
/// [requires: OES_single_precision]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")]
[CLSCompliant(false)]
@@ -11691,15 +9533,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")]
[CLSCompliant(false)]
@@ -11708,327 +9546,335 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Specify a plane against which all geometry is clipped
///
- ///
- ///
- /// Specifies which clipping plane is being positioned. Symbolic names of the form GL_CLIP_PLANEi, where i is an integer between 0 and GL_MAX_CLIP_PLANES - 1, are accepted.
- ///
+ ///
+ /// Specifies which clipping plane is being positioned. Symbolic names of the form ClipPlanei, where i is an integer between 0 and MaxClipPlanes - 1, are accepted.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Specifies the address of an array of four double-precision floating-point values. These values are interpreted as a plane equation.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glClipPlanefOES")]
[CLSCompliant(false)]
public static unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, Single* equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")]
[CLSCompliant(false)]
public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, int[] equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")]
[CLSCompliant(false)]
public static void ClipPlanex(OpenTK.Graphics.ES11.All plane, ref int equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glClipPlanexOES")]
[CLSCompliant(false)]
public static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xOES")]
public static void Color3x(int red, int green, int blue) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")]
[CLSCompliant(false)]
public static void Color3x(int[] components) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")]
[CLSCompliant(false)]
public static void Color3x(ref int components) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor3xvOES")]
[CLSCompliant(false)]
public static unsafe void Color3x(int* components) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xOES")]
public static void Color4x(int red, int green, int blue, int alpha) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")]
[CLSCompliant(false)]
public static void Color4x(int[] components) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")]
[CLSCompliant(false)]
public static void Color4x(ref int components) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glColor4xvOES")]
[CLSCompliant(false)]
public static unsafe void Color4x(int* components) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxOES")]
public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")]
[CLSCompliant(false)]
public static void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glConvolutionParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void ConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")]
[CLSCompliant(false)]
public static void CurrentPaletteMatrix(Int32 matrixpaletteindex) { throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glCurrentPaletteMatrixOES")]
[CLSCompliant(false)]
public static void CurrentPaletteMatrix(UInt32 matrixpaletteindex) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Delete named framebuffer objects
+ ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Delete named framebuffer objects
+ ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete framebuffer objects
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete framebuffer objects
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete framebuffer objects
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete framebuffer objects
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete framebuffer objects
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete framebuffer objects
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteFramebuffersOES")]
[CLSCompliant(false)]
public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Delete named renderbuffer objects
+ ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Delete named renderbuffer objects
+ ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete renderbuffer objects
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete renderbuffer objects
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete renderbuffer objects
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete renderbuffer objects
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete renderbuffer objects
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Delete renderbuffer objects
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glDeleteRenderbuffersOES")]
[CLSCompliant(false)]
public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); }
- /// [requires: OES_vertex_array_object]
+ /// [requires: OES_vertex_array_object]
+ /// Delete vertex array objects
+ ///
+ /// [length: n]
+ /// Specifies the address of an array containing the n names of the objects to be deleted.
+ ///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
public static void DeleteVertexArray(Int32 arrays) { throw new NotImplementedException(); }
- /// [requires: OES_vertex_array_object]
+ /// [requires: OES_vertex_array_object]
+ /// Delete vertex array objects
+ ///
+ /// [length: n]
+ /// Specifies the address of an array containing the n names of the objects to be deleted.
+ ///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
public static void DeleteVertexArray(UInt32 arrays) { throw new NotImplementedException(); }
@@ -12036,15 +9882,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Delete vertex array objects
///
- ///
- ///
+ ///
/// Specifies the number of vertex array objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies the address of an array containing the n names of the objects to be deleted.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
@@ -12053,15 +9895,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Delete vertex array objects
///
- ///
- ///
+ ///
/// Specifies the number of vertex array objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies the address of an array containing the n names of the objects to be deleted.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
@@ -12070,15 +9908,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Delete vertex array objects
///
- ///
- ///
+ ///
/// Specifies the number of vertex array objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies the address of an array containing the n names of the objects to be deleted.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
@@ -12087,15 +9921,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Delete vertex array objects
///
- ///
- ///
+ ///
/// Specifies the number of vertex array objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies the address of an array containing the n names of the objects to be deleted.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
@@ -12104,15 +9934,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Delete vertex array objects
///
- ///
- ///
+ ///
/// Specifies the number of vertex array objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies the address of an array containing the n names of the objects to be deleted.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
@@ -12121,15 +9947,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Delete vertex array objects
///
- ///
- ///
+ ///
/// Specifies the number of vertex array objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies the address of an array containing the n names of the objects to be deleted.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glDeleteVertexArraysOES")]
[CLSCompliant(false)]
@@ -12138,224 +9960,298 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Specify mapping of depth values from normalized device coordinates to window coordinates
///
- ///
- ///
+ ///
/// Specifies the mapping of the near clipping plane to window coordinates. The initial value is 0.
- ///
///
- ///
- ///
+ ///
/// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glDepthRangefOES")]
public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glDepthRangexOES")]
public static void DepthRangex(int n, int f) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfOES")]
public static void DrawTex(Single x, Single y, Single z, Single width, Single height) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")]
[CLSCompliant(false)]
public static void DrawTex(Single[] coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")]
[CLSCompliant(false)]
public static void DrawTex(ref Single coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexfvOES")]
[CLSCompliant(false)]
public static unsafe void DrawTex(Single* coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexiOES")]
public static void DrawTex(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")]
[CLSCompliant(false)]
public static void DrawTex(Int32[] coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")]
[CLSCompliant(false)]
public static void DrawTex(ref Int32 coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexivOES")]
[CLSCompliant(false)]
public static unsafe void DrawTex(Int32* coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsOES")]
public static void DrawTex(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")]
[CLSCompliant(false)]
public static void DrawTex(Int16[] coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")]
[CLSCompliant(false)]
public static void DrawTex(ref Int16 coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexsvOES")]
[CLSCompliant(false)]
public static unsafe void DrawTex(Int16* coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxOES")]
public static void DrawTexx(int x, int y, int z, int width, int height) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")]
[CLSCompliant(false)]
public static void DrawTexx(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")]
[CLSCompliant(false)]
public static void DrawTexx(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_draw_texture]
+ ///
[AutoGenerated(Category = "OES_draw_texture", Version = "", EntryPoint = "glDrawTexxvOES")]
[CLSCompliant(false)]
public static unsafe void DrawTexx(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_EGL_image]
+ ///
+ ///
[AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")]
public static void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new NotImplementedException(); }
/// [requires: OES_EGL_image]
+ ///
+ ///
[AutoGenerated(Category = "OES_EGL_image", Version = "", EntryPoint = "glEGLImageTargetTexture2DOES")]
public static void EGLImageTargetTexture2D(OpenTK.Graphics.ES11.All target, IntPtr image) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xOES")]
public static void EvalCoord1x(int u) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 1]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord1xvOES")]
[CLSCompliant(false)]
public static unsafe void EvalCoord1x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xOES")]
public static void EvalCoord2x(int u, int v) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")]
[CLSCompliant(false)]
public static void EvalCoord2x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")]
[CLSCompliant(false)]
public static void EvalCoord2x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glEvalCoord2xvOES")]
[CLSCompliant(false)]
public static unsafe void EvalCoord2x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")]
[CLSCompliant(false)]
public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, int[] buffer) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")]
[CLSCompliant(false)]
public static void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, ref int buffer) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFeedbackBufferxOES")]
[CLSCompliant(false)]
public static unsafe void FeedbackBufferx(Int32 n, OpenTK.Graphics.ES11.All type, int* buffer) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxOES")]
public static void Fogx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")]
[CLSCompliant(false)]
public static void Fogx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFogxvOES")]
[CLSCompliant(false)]
public static unsafe void Fogx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferRenderbufferOES")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glFramebufferTexture2DOES")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); }
@@ -12363,40 +10259,49 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Multiply the current matrix by a perspective matrix
///
- ///
- ///
+ ///
/// Specify the coordinates for the left and right vertical clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the left and right vertical clipping planes.
+ ///
+ ///
/// Specify the coordinates for the bottom and top horizontal clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the bottom and top horizontal clipping planes.
+ ///
+ ///
+ /// Specify the distances to the near and far depth clipping planes. Both distances must be positive.
+ ///
+ ///
/// Specify the distances to the near and far depth clipping planes. Both distances must be positive.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glFrustumfOES")]
public static void Frustum(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glFrustumxOES")]
public static void Frustumx(int l, int r, int b, int t, int n, int f) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Generate mipmaps for a specified texture target
+ /// Generate a complete set of mipmaps for a texture object
///
- ///
- ///
- /// Specifies the target to which the texture whose mimaps to generate is bound. target must be GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenerateMipmapOES")]
public static void GenerateMipmap(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Generate framebuffer object names
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
public static Int32 GenFramebuffer() { throw new NotImplementedException(); }
@@ -12404,15 +10309,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
@@ -12421,15 +10322,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
@@ -12438,15 +10335,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
@@ -12455,15 +10348,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
@@ -12472,15 +10361,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
@@ -12489,21 +10374,19 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenFramebuffersOES")]
[CLSCompliant(false)]
public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers) { throw new NotImplementedException(); }
- /// [requires: OES_framebuffer_object]
+ /// [requires: OES_framebuffer_object]
+ /// Generate renderbuffer object names
+ ///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
public static Int32 GenRenderbuffer() { throw new NotImplementedException(); }
@@ -12511,15 +10394,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate renderbuffer object names
///
- ///
- ///
- /// Specifies the number of renderbuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of renderbuffer object names to be generated.
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated renderbuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
@@ -12528,15 +10407,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate renderbuffer object names
///
- ///
- ///
- /// Specifies the number of renderbuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of renderbuffer object names to be generated.
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated renderbuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
@@ -12545,15 +10420,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate renderbuffer object names
///
- ///
- ///
- /// Specifies the number of renderbuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of renderbuffer object names to be generated.
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated renderbuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
@@ -12562,15 +10433,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate renderbuffer object names
///
- ///
- ///
- /// Specifies the number of renderbuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of renderbuffer object names to be generated.
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated renderbuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
@@ -12579,15 +10446,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate renderbuffer object names
///
- ///
- ///
- /// Specifies the number of renderbuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of renderbuffer object names to be generated.
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated renderbuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
@@ -12596,21 +10459,19 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Generate renderbuffer object names
///
- ///
- ///
- /// Specifies the number of renderbuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of renderbuffer object names to be generated.
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated renderbuffer object names are stored.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGenRenderbuffersOES")]
[CLSCompliant(false)]
public static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers) { throw new NotImplementedException(); }
- /// [requires: OES_vertex_array_object]
+ /// [requires: OES_vertex_array_object]
+ /// Generate vertex array object names
+ ///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
public static Int32 GenVertexArray() { throw new NotImplementedException(); }
@@ -12618,15 +10479,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Generate vertex array object names
///
- ///
- ///
+ ///
/// Specifies the number of vertex array object names to generate.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated vertex array object names are stored.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
@@ -12635,15 +10492,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Generate vertex array object names
///
- ///
- ///
+ ///
/// Specifies the number of vertex array object names to generate.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated vertex array object names are stored.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
@@ -12652,15 +10505,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Generate vertex array object names
///
- ///
- ///
+ ///
/// Specifies the number of vertex array object names to generate.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated vertex array object names are stored.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
@@ -12669,15 +10518,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Generate vertex array object names
///
- ///
- ///
+ ///
/// Specifies the number of vertex array object names to generate.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated vertex array object names are stored.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
@@ -12686,15 +10531,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Generate vertex array object names
///
- ///
- ///
+ ///
/// Specifies the number of vertex array object names to generate.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated vertex array object names are stored.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
@@ -12703,25 +10544,27 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Generate vertex array object names
///
- ///
- ///
+ ///
/// Specifies the number of vertex array object names to generate.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated vertex array object names are stored.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glGenVertexArraysOES")]
[CLSCompliant(false)]
public static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays) { throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")]
public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")]
[CLSCompliant(false)]
public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[] @params)
@@ -12729,6 +10572,9 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")]
[CLSCompliant(false)]
public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,] @params)
@@ -12736,6 +10582,9 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")]
[CLSCompliant(false)]
public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,,] @params)
@@ -12743,6 +10592,9 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glGetBufferPointervOES")]
public static void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T2 @params)
where T2 : struct
@@ -12751,15 +10603,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Return the coefficients of the specified clipping plane
///
- ///
- ///
- /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.
- ///
+ ///
+ /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")]
[CLSCompliant(false)]
@@ -12768,15 +10616,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Return the coefficients of the specified clipping plane
///
- ///
- ///
- /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.
- ///
+ ///
+ /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")]
[CLSCompliant(false)]
@@ -12785,66 +10629,84 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Return the coefficients of the specified clipping plane
///
- ///
- ///
- /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.
- ///
+ ///
+ /// Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form ClipPlane where i ranges from 0 to the value of MaxClipPlanes - 1.
///
- /// [length: 4]
- ///
+ /// [length: 4]
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glGetClipPlanefOES")]
[CLSCompliant(false)]
public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single* equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")]
[CLSCompliant(false)]
public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int[] equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")]
[CLSCompliant(false)]
public static void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] out int equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetClipPlanexOES")]
[CLSCompliant(false)]
public static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All plane, [OutAttribute] int* equation) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")]
[CLSCompliant(false)]
public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")]
[CLSCompliant(false)]
public static void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetConvolutionParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void GetConvolutionParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")]
[CLSCompliant(false)]
public static int GetFixed(OpenTK.Graphics.ES11.All pname) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")]
[CLSCompliant(false)]
public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")]
[CLSCompliant(false)]
public static void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetFixedvOES")]
[CLSCompliant(false)]
public static unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
@@ -12852,25 +10714,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Retrieve information about attachments of a bound framebuffer object
///
- ///
- ///
+ ///
/// Specifies the target of the query operation.
- ///
///
- ///
- ///
+ ///
/// Specifies the attachment within target
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter of attachment to query.
- ///
///
- ///
- ///
+ /// [length: pname]
/// Specifies the address of a variable receive the value of pname for attachment.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")]
[CLSCompliant(false)]
@@ -12879,25 +10733,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Retrieve information about attachments of a bound framebuffer object
///
- ///
- ///
+ ///
/// Specifies the target of the query operation.
- ///
///
- ///
- ///
+ ///
/// Specifies the attachment within target
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter of attachment to query.
- ///
///
- ///
- ///
+ /// [length: pname]
/// Specifies the address of a variable receive the value of pname for attachment.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")]
[CLSCompliant(false)]
@@ -12906,85 +10752,113 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Retrieve information about attachments of a bound framebuffer object
///
- ///
- ///
+ ///
/// Specifies the target of the query operation.
- ///
///
- ///
- ///
+ ///
/// Specifies the attachment within target
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter of attachment to query.
- ///
///
- ///
- ///
+ /// [length: pname]
/// Specifies the address of a variable receive the value of pname for attachment.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetFramebufferAttachmentParameterivOES")]
[CLSCompliant(false)]
public static unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")]
[CLSCompliant(false)]
public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")]
[CLSCompliant(false)]
public static void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetHistogramParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void GetHistogramParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")]
[CLSCompliant(false)]
public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")]
[CLSCompliant(false)]
public static void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetLightxOES")]
[CLSCompliant(false)]
public static unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: query]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")]
[CLSCompliant(false)]
public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute] int[] v) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: query]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")]
[CLSCompliant(false)]
public static void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute] out int v) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: query]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMapxvOES")]
[CLSCompliant(false)]
public static unsafe void GetMapx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All query, [OutAttribute] int* v) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxOES")]
public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")]
[CLSCompliant(false)]
public static void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetMaterialxvOES")]
[CLSCompliant(false)]
public static unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
@@ -12992,20 +10866,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Retrieve information about a bound renderbuffer object
///
- ///
- ///
- /// Specifies the target of the query operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target of the query operation. target must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the renderbuffer bound to target.
- ///
///
- ///
- ///
+ /// [length: pname]
/// Specifies the address of an array to receive the value of the queried parameter.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")]
[CLSCompliant(false)]
@@ -13014,20 +10882,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Retrieve information about a bound renderbuffer object
///
- ///
- ///
- /// Specifies the target of the query operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target of the query operation. target must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the renderbuffer bound to target.
- ///
///
- ///
- ///
+ /// [length: pname]
/// Specifies the address of an array to receive the value of the queried parameter.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")]
[CLSCompliant(false)]
@@ -13036,36 +10898,39 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Retrieve information about a bound renderbuffer object
///
- ///
- ///
- /// Specifies the target of the query operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target of the query operation. target must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the renderbuffer bound to target.
- ///
///
- ///
- ///
+ /// [length: pname]
/// Specifies the address of an array to receive the value of the queried parameter.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glGetRenderbufferParameterivOES")]
[CLSCompliant(false)]
public static unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")]
[CLSCompliant(false)]
public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")]
[CLSCompliant(false)]
public static void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexEnvxvOES")]
[CLSCompliant(false)]
public static unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
@@ -13073,20 +10938,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Return texture coordinate generation parameters
///
- ///
- ///
- /// Specifies a texture coordinate. Must be GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the value(s) to be returned. Must be either GL_TEXTURE_GEN_MODE or the name of one of the texture generation plane equations: GL_OBJECT_PLANE or GL_EYE_PLANE.
- ///
+ ///
+ /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")]
[CLSCompliant(false)]
@@ -13095,20 +10954,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Return texture coordinate generation parameters
///
- ///
- ///
- /// Specifies a texture coordinate. Must be GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the value(s) to be returned. Must be either GL_TEXTURE_GEN_MODE or the name of one of the texture generation plane equations: GL_OBJECT_PLANE or GL_EYE_PLANE.
- ///
+ ///
+ /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")]
[CLSCompliant(false)]
@@ -13117,20 +10970,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Return texture coordinate generation parameters
///
- ///
- ///
- /// Specifies a texture coordinate. Must be GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the value(s) to be returned. Must be either GL_TEXTURE_GEN_MODE or the name of one of the texture generation plane equations: GL_OBJECT_PLANE or GL_EYE_PLANE.
- ///
+ ///
+ /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenfvOES")]
[CLSCompliant(false)]
@@ -13139,20 +10986,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Return texture coordinate generation parameters
///
- ///
- ///
- /// Specifies a texture coordinate. Must be GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the value(s) to be returned. Must be either GL_TEXTURE_GEN_MODE or the name of one of the texture generation plane equations: GL_OBJECT_PLANE or GL_EYE_PLANE.
- ///
+ ///
+ /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")]
[CLSCompliant(false)]
@@ -13161,20 +11002,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Return texture coordinate generation parameters
///
- ///
- ///
- /// Specifies a texture coordinate. Must be GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the value(s) to be returned. Must be either GL_TEXTURE_GEN_MODE or the name of one of the texture generation plane equations: GL_OBJECT_PLANE or GL_EYE_PLANE.
- ///
+ ///
+ /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")]
[CLSCompliant(false)]
@@ -13183,75 +11018,101 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Return texture coordinate generation parameters
///
- ///
- ///
- /// Specifies a texture coordinate. Must be GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the value(s) to be returned. Must be either GL_TEXTURE_GEN_MODE or the name of one of the texture generation plane equations: GL_OBJECT_PLANE or GL_EYE_PLANE.
- ///
+ ///
+ /// Specifies the symbolic name of the value(s) to be returned. Must be either TextureGenMode or the name of one of the texture generation plane equations: ObjectPlane or EyePlane.
///
- ///
- ///
+ /// [length: pname]
/// Returns the requested data.
- ///
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenivOES")]
[CLSCompliant(false)]
public static unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point|OES_texture_cube_map]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")]
[CLSCompliant(false)]
public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point|OES_texture_cube_map]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")]
[CLSCompliant(false)]
public static void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point|OES_texture_cube_map]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glGetTexGenxvOES")]
[CLSCompliant(false)]
public static unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")]
[CLSCompliant(false)]
public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")]
[CLSCompliant(false)]
public static void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexLevelParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void GetTexLevelParameterx(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")]
[CLSCompliant(false)]
public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")]
[CLSCompliant(false)]
public static void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] out int @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glGetTexParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxOES")]
public static void Indexx(int component) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 1]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glIndexxvOES")]
[CLSCompliant(false)]
public static unsafe void Indexx(int* component) { throw new NotImplementedException(); }
@@ -13259,10 +11120,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Determine if a name corresponds to a framebuffer object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a framebuffer object.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")]
[CLSCompliant(false)]
@@ -13271,10 +11130,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Determine if a name corresponds to a framebuffer object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a framebuffer object.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsFramebufferOES")]
[CLSCompliant(false)]
@@ -13283,10 +11140,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Determine if a name corresponds to a renderbuffer object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a renderbuffer object.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")]
[CLSCompliant(false)]
@@ -13295,10 +11150,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_framebuffer_object]
/// Determine if a name corresponds to a renderbuffer object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a renderbuffer object.
- ///
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glIsRenderbufferOES")]
[CLSCompliant(false)]
@@ -13307,10 +11160,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Determine if a name corresponds to a vertex array object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a vertex array object.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")]
[CLSCompliant(false)]
@@ -13319,58 +11170,75 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_vertex_array_object]
/// Determine if a name corresponds to a vertex array object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a vertex array object.
- ///
///
[AutoGenerated(Category = "OES_vertex_array_object", Version = "", EntryPoint = "glIsVertexArrayOES")]
[CLSCompliant(false)]
public static bool IsVertexArray(UInt32 array) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxOES")]
public static void LightModelx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")]
[CLSCompliant(false)]
public static void LightModelx(OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightModelxvOES")]
[CLSCompliant(false)]
public static unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxOES")]
public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")]
[CLSCompliant(false)]
public static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLightxvOES")]
[CLSCompliant(false)]
public static unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLineWidthxOES")]
public static void LineWidthx(int width) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")]
[CLSCompliant(false)]
public static void LoadMatrixx(int[] m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")]
[CLSCompliant(false)]
public static void LoadMatrixx(ref int m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadMatrixxOES")]
[CLSCompliant(false)]
public static unsafe void LoadMatrixx(int* m) { throw new NotImplementedException(); }
@@ -13380,71 +11248,111 @@ namespace OpenTK.Graphics.ES11
public static void LoadPaletteFromModelViewMatrix() { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")]
[CLSCompliant(false)]
public static void LoadTransposeMatrixx(int[] m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")]
[CLSCompliant(false)]
public static void LoadTransposeMatrixx(ref int m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glLoadTransposeMatrixxOES")]
[CLSCompliant(false)]
public static unsafe void LoadTransposeMatrixx(int* m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap1xOES")]
public static void Map1x(OpenTK.Graphics.ES11.All target, int u1, int u2, Int32 stride, Int32 order, int points) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMap2xOES")]
public static void Map2x(OpenTK.Graphics.ES11.All target, int u1, int u2, Int32 ustride, Int32 uorder, int v1, int v2, Int32 vstride, Int32 vorder, int points) { throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
/// Map a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object being mapped. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object being mapped. The symbolic constant must be ArrayBuffer, AtomicCounterBuffer, CopyReadBuffer, CopyWriteBuffer, DrawIndirectBuffer, DispatchIndirectBuffer, ElementArrayBuffer, PixelPackBuffer, PixelUnpackBuffer, QueryBuffer, ShaderStorageBuffer, TextureBuffer, TransformFeedbackBuffer or UniformBuffer.
///
- ///
- ///
- /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be GL_READ_ONLY, GL_WRITE_ONLY, or GL_READ_WRITE.
- ///
+ ///
+ /// For glMapBuffer only, specifies the access policy, indicating whether it will be possible to read from, write to, or both read from and write to the buffer object's mapped data store. The symbolic constant must be ReadOnly, WriteOnly, or ReadWrite.
///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glMapBufferOES")]
public static IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid1xOES")]
public static void MapGrid1x(Int32 n, int u1, int u2) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMapGrid2xOES")]
public static void MapGrid2x(Int32 n, int u1, int u2, int v1, int v2) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxOES")]
public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")]
[CLSCompliant(false)]
public static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMaterialxvOES")]
[CLSCompliant(false)]
public static unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* param) { throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: size,type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")]
public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: size,type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")]
[CLSCompliant(false)]
public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
@@ -13452,6 +11360,10 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: size,type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")]
[CLSCompliant(false)]
public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
@@ -13459,6 +11371,10 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: size,type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")]
[CLSCompliant(false)]
public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
@@ -13466,6 +11382,10 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: size,type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glMatrixIndexPointerOES")]
public static void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
where T3 : struct
@@ -13474,15 +11394,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")]
[CLSCompliant(false)]
@@ -13491,15 +11407,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bOES")]
[CLSCompliant(false)]
@@ -13508,15 +11420,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 1]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")]
[CLSCompliant(false)]
@@ -13525,25 +11433,25 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 1]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord1bvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord1(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xOES")]
public static void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, int s) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord1xvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord1x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); }
@@ -13551,15 +11459,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")]
[CLSCompliant(false)]
@@ -13568,15 +11475,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bOES")]
[CLSCompliant(false)]
@@ -13585,15 +11491,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 2]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -13602,15 +11504,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 2]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -13619,15 +11517,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 2]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -13636,15 +11530,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 2]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -13653,15 +11543,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 2]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -13670,35 +11556,40 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 2]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord2bvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord2(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xOES")]
public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, int s, int t) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")]
[CLSCompliant(false)]
public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")]
[CLSCompliant(false)]
public static void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord2xvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord2x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); }
@@ -13706,15 +11597,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")]
[CLSCompliant(false)]
@@ -13723,15 +11616,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bOES")]
[CLSCompliant(false)]
@@ -13740,15 +11635,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 3]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -13757,15 +11648,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 3]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -13774,15 +11661,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 3]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -13791,15 +11674,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 3]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -13808,15 +11687,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 3]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -13825,35 +11700,41 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 3]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord3bvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord3(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xOES")]
public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, int s, int t, int r) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")]
[CLSCompliant(false)]
public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")]
[CLSCompliant(false)]
public static void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord3xvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord3x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); }
@@ -13861,15 +11742,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")]
[CLSCompliant(false)]
@@ -13878,15 +11764,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bOES")]
[CLSCompliant(false)]
@@ -13895,15 +11786,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 4]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -13912,15 +11799,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 4]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -13929,15 +11812,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 4]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -13946,15 +11825,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 4]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -13963,15 +11838,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 4]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -13980,84 +11851,103 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of GL_TEXTURE, where i ranges from 0 to GL_MAX_TEXTURE_COORDS - 1, which is an implementation-dependent value.
- ///
+ ///
+ /// Specifies the texture unit whose coordinates should be modified. The number of texture units is implementation dependent, but must be at least two. Symbolic constant must be one of Texture, where i ranges from 0 to MaxTextureCoords - 1, which is an implementation-dependent value.
///
- ///
- ///
+ /// [length: 4]
/// Specify s, t, r, and q texture coordinates for target texture unit. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glMultiTexCoord4bvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord4(OpenTK.Graphics.ES11.All texture, SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xOES")]
public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, int s, int t, int r, int q) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")]
[CLSCompliant(false)]
public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")]
[CLSCompliant(false)]
public static void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultiTexCoord4xvOES")]
[CLSCompliant(false)]
public static unsafe void MultiTexCoord4x(OpenTK.Graphics.ES11.All texture, int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")]
[CLSCompliant(false)]
public static void MultMatrixx(int[] m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")]
[CLSCompliant(false)]
public static void MultMatrixx(ref int m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultMatrixxOES")]
[CLSCompliant(false)]
public static unsafe void MultMatrixx(int* m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")]
[CLSCompliant(false)]
public static void MultTransposeMatrixx(int[] m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")]
[CLSCompliant(false)]
public static void MultTransposeMatrixx(ref int m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 16]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glMultTransposeMatrixxOES")]
[CLSCompliant(false)]
public static unsafe void MultTransposeMatrixx(int* m) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xOES")]
public static void Normal3x(int nx, int ny, int nz) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")]
[CLSCompliant(false)]
public static void Normal3x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")]
[CLSCompliant(false)]
public static void Normal3x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glNormal3xvOES")]
[CLSCompliant(false)]
public static unsafe void Normal3x(int* coords) { throw new NotImplementedException(); }
@@ -14065,59 +11955,85 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_single_precision]
/// Multiply the current matrix with an orthographic matrix
///
- ///
- ///
+ ///
/// Specify the coordinates for the left and right vertical clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the left and right vertical clipping planes.
+ ///
+ ///
/// Specify the coordinates for the bottom and top horizontal clipping planes.
- ///
///
- ///
- ///
+ ///
+ /// Specify the coordinates for the bottom and top horizontal clipping planes.
+ ///
+ ///
+ /// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer.
+ ///
+ ///
/// Specify the distances to the nearer and farther depth clipping planes. These values are negative if the plane is to be behind the viewer.
- ///
///
[AutoGenerated(Category = "OES_single_precision", Version = "", EntryPoint = "glOrthofOES")]
public static void Ortho(Single l, Single r, Single b, Single t, Single n, Single f) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glOrthoxOES")]
public static void Orthox(int l, int r, int b, int t, int n, int f) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPassThroughxOES")]
public static void PassThroughx(int token) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelTransferxOES")]
public static void PixelTransferx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPixelZoomxOES")]
public static void PixelZoomx(int xfactor, int yfactor) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxOES")]
public static void PointParameterx(OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")]
[CLSCompliant(false)]
public static void PointParameterx(OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
/// [requires: OES_point_size_array]
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")]
public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
/// [requires: OES_point_size_array]
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")]
[CLSCompliant(false)]
public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer)
@@ -14125,6 +12041,9 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_point_size_array]
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")]
[CLSCompliant(false)]
public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer)
@@ -14132,6 +12051,9 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_point_size_array]
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")]
[CLSCompliant(false)]
public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer)
@@ -14139,201 +12061,254 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_point_size_array]
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_point_size_array", Version = "", EntryPoint = "glPointSizePointerOES")]
public static void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T2 pointer)
where T2 : struct
{ throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPointSizexOES")]
public static void PointSizex(int size) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPolygonOffsetxOES")]
public static void PolygonOffsetx(int factor, int units) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: n]
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")]
[CLSCompliant(false)]
public static void PrioritizeTexturesx(Int32 n, Int32[] textures, int[] priorities) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: n]
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")]
[CLSCompliant(false)]
public static void PrioritizeTexturesx(Int32 n, ref Int32 textures, ref int priorities) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: n]
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")]
[CLSCompliant(false)]
public static unsafe void PrioritizeTexturesx(Int32 n, Int32* textures, int* priorities) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: n]
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")]
[CLSCompliant(false)]
public static void PrioritizeTexturesx(Int32 n, UInt32[] textures, int[] priorities) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: n]
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")]
[CLSCompliant(false)]
public static void PrioritizeTexturesx(Int32 n, ref UInt32 textures, ref int priorities) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ /// [length: n]
+ /// [length: n]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glPrioritizeTexturesxOES")]
[CLSCompliant(false)]
public static unsafe void PrioritizeTexturesx(Int32 n, UInt32* textures, int* priorities) { throw new NotImplementedException(); }
/// [requires: OES_query_matrix]
+ /// [length: 16]
+ /// [length: 16]
[AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")]
[CLSCompliant(false)]
public static Int32 QueryMatrixx([OutAttribute] int[] mantissa, [OutAttribute] Int32[] exponent) { throw new NotImplementedException(); }
/// [requires: OES_query_matrix]
+ /// [length: 16]
+ /// [length: 16]
[AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")]
[CLSCompliant(false)]
public static Int32 QueryMatrixx([OutAttribute] out int mantissa, [OutAttribute] out Int32 exponent) { throw new NotImplementedException(); }
/// [requires: OES_query_matrix]
+ /// [length: 16]
+ /// [length: 16]
[AutoGenerated(Category = "OES_query_matrix", Version = "", EntryPoint = "glQueryMatrixxOES")]
[CLSCompliant(false)]
public static unsafe Int32 QueryMatrixx([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xOES")]
public static void RasterPos2x(int x, int y) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")]
[CLSCompliant(false)]
public static void RasterPos2x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")]
[CLSCompliant(false)]
public static void RasterPos2x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos2xvOES")]
[CLSCompliant(false)]
public static unsafe void RasterPos2x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xOES")]
public static void RasterPos3x(int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")]
[CLSCompliant(false)]
public static void RasterPos3x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")]
[CLSCompliant(false)]
public static void RasterPos3x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos3xvOES")]
[CLSCompliant(false)]
public static unsafe void RasterPos3x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xOES")]
public static void RasterPos4x(int x, int y, int z, int w) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")]
[CLSCompliant(false)]
public static void RasterPos4x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")]
[CLSCompliant(false)]
public static void RasterPos4x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRasterPos4xvOES")]
[CLSCompliant(false)]
public static unsafe void RasterPos4x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxOES")]
public static void Rectx(int x1, int y1, int x2, int y2) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")]
[CLSCompliant(false)]
public static void Rectx(int[] v1, int[] v2) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")]
[CLSCompliant(false)]
public static void Rectx(ref int v1, ref int v2) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRectxvOES")]
[CLSCompliant(false)]
public static unsafe void Rectx(int* v1, int* v2) { throw new NotImplementedException(); }
/// [requires: OES_framebuffer_object]
- /// Establish data storage, format and dimensions of a renderbuffer object's image
+ /// Create and initialize a renderbuffer object's data store
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the internal format to use for the renderbuffer object's image.
- ///
+ ///
+ /// Specifies the color-renderable, depth-renderable, or stencil-renderable format of the renderbuffer. Must be one of the following symbolic constants: Rgba4, Rgb565, Rgb5A1, DepthComponent16, or StencilIndex8.
///
- ///
- ///
- /// Specifies the width of the renderbuffer, in pixels.
- ///
+ ///
+ /// Specifies the width of the renderbuffer in pixels.
///
- ///
- ///
- /// Specifies the height of the renderbuffer, in pixels.
- ///
+ ///
+ /// Specifies the height of the renderbuffer in pixels.
///
[AutoGenerated(Category = "OES_framebuffer_object", Version = "", EntryPoint = "glRenderbufferStorageOES")]
public static void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glRotatexOES")]
public static void Rotatex(int angle, int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
/// Specify multisample coverage parameters
///
- ///
- ///
- /// Specify a single floating-point sample coverage value. The value is clamped to the range [0 ,1]. The initial value is 1.0.
- ///
+ ///
+ /// Specify a single floating-point sample coverage value. The value is clamped to the range [0 ,1]. The initial value is 1.0.
///
- ///
- ///
- /// Specify a single boolean value representing if the coverage masks should be inverted. GL_TRUE and GL_FALSE are accepted. The initial value is GL_FALSE.
- ///
+ ///
+ /// Specify a single boolean value representing if the coverage masks should be inverted. True and False are accepted. The initial value is False.
///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glSampleCoverageOES")]
public static void SampleCoverage(int value, bool invert) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glSampleCoveragexOES")]
public static void SampleCoveragex(int value, bool invert) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glScalexOES")]
public static void Scalex(int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")]
[CLSCompliant(false)]
@@ -14342,10 +12317,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bOES")]
[CLSCompliant(false)]
@@ -14354,10 +12327,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 1]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")]
[CLSCompliant(false)]
@@ -14366,20 +12337,20 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 1]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord1bvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord1(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xOES")]
public static void TexCoord1x(int s) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 1]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord1xvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord1x(int* coords) { throw new NotImplementedException(); }
@@ -14387,10 +12358,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")]
[CLSCompliant(false)]
@@ -14399,10 +12371,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bOES")]
[CLSCompliant(false)]
@@ -14411,10 +12384,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 2]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -14423,10 +12394,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 2]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -14435,10 +12404,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 2]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -14447,10 +12414,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 2]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -14459,10 +12424,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 2]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")]
[CLSCompliant(false)]
@@ -14471,30 +12434,33 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 2]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord2bvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord2(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xOES")]
public static void TexCoord2x(int s, int t) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")]
[CLSCompliant(false)]
public static void TexCoord2x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")]
[CLSCompliant(false)]
public static void TexCoord2x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord2xvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord2x(int* coords) { throw new NotImplementedException(); }
@@ -14502,10 +12468,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")]
[CLSCompliant(false)]
@@ -14514,10 +12484,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bOES")]
[CLSCompliant(false)]
@@ -14526,10 +12500,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 3]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -14538,10 +12510,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 3]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -14550,10 +12520,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 3]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -14562,10 +12530,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 3]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -14574,10 +12540,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 3]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")]
[CLSCompliant(false)]
@@ -14586,30 +12550,34 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 3]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord3bvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord3(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xOES")]
public static void TexCoord3x(int s, int t, int r) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")]
[CLSCompliant(false)]
public static void TexCoord3x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")]
[CLSCompliant(false)]
public static void TexCoord3x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord3xvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord3x(int* coords) { throw new NotImplementedException(); }
@@ -14617,10 +12585,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")]
[CLSCompliant(false)]
@@ -14629,10 +12604,17 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bOES")]
[CLSCompliant(false)]
@@ -14641,10 +12623,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 4]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -14653,10 +12633,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 4]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -14665,10 +12643,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 4]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -14677,10 +12653,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 4]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -14689,10 +12663,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 4]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")]
[CLSCompliant(false)]
@@ -14701,44 +12673,58 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Set the current texture coordinates
///
- ///
- ///
- /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
- ///
+ /// [length: 4]
+ /// Specify s, t, r, and q texture coordinates. Not all parameters are present in all forms of the command.
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glTexCoord4bvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord4(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xOES")]
public static void TexCoord4x(int s, int t, int r, int q) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")]
[CLSCompliant(false)]
public static void TexCoord4x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")]
[CLSCompliant(false)]
public static void TexCoord4x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexCoord4xvOES")]
[CLSCompliant(false)]
public static unsafe void TexCoord4x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxOES")]
public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")]
[CLSCompliant(false)]
public static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexEnvxvOES")]
[CLSCompliant(false)]
public static unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
@@ -14746,20 +12732,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Control the generation of texture coordinates
///
- ///
- ///
- /// Specifies a texture coordinate. Must be one of GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be one of S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the texture-coordinate generation function. Must be GL_TEXTURE_GEN_MODE.
- ///
+ ///
+ /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode.
///
- ///
- ///
- /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP.
- ///
+ ///
+ /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap.
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfOES")]
public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param) { throw new NotImplementedException(); }
@@ -14767,20 +12747,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Control the generation of texture coordinates
///
- ///
- ///
- /// Specifies a texture coordinate. Must be one of GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be one of S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the texture-coordinate generation function. Must be GL_TEXTURE_GEN_MODE.
- ///
+ ///
+ /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode.
///
- ///
- ///
- /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP.
- ///
+ /// [length: pname]
+ /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap.
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")]
[CLSCompliant(false)]
@@ -14789,20 +12763,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Control the generation of texture coordinates
///
- ///
- ///
- /// Specifies a texture coordinate. Must be one of GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be one of S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the texture-coordinate generation function. Must be GL_TEXTURE_GEN_MODE.
- ///
+ ///
+ /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode.
///
- ///
- ///
- /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP.
- ///
+ /// [length: pname]
+ /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap.
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenfvOES")]
[CLSCompliant(false)]
@@ -14811,20 +12779,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Control the generation of texture coordinates
///
- ///
- ///
- /// Specifies a texture coordinate. Must be one of GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be one of S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the texture-coordinate generation function. Must be GL_TEXTURE_GEN_MODE.
- ///
+ ///
+ /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode.
///
- ///
- ///
- /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP.
- ///
+ ///
+ /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap.
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGeniOES")]
public static void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); }
@@ -14832,20 +12794,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Control the generation of texture coordinates
///
- ///
- ///
- /// Specifies a texture coordinate. Must be one of GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be one of S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the texture-coordinate generation function. Must be GL_TEXTURE_GEN_MODE.
- ///
+ ///
+ /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode.
///
- ///
- ///
- /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP.
- ///
+ /// [length: pname]
+ /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap.
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")]
[CLSCompliant(false)]
@@ -14854,68 +12810,82 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_texture_cube_map]
/// Control the generation of texture coordinates
///
- ///
- ///
- /// Specifies a texture coordinate. Must be one of GL_S, GL_T, GL_R, or GL_Q.
- ///
+ ///
+ /// Specifies a texture coordinate. Must be one of S, T, R, or Q.
///
- ///
- ///
- /// Specifies the symbolic name of the texture-coordinate generation function. Must be GL_TEXTURE_GEN_MODE.
- ///
+ ///
+ /// Specifies the symbolic name of the texture-coordinate generation function. Must be TextureGenMode.
///
- ///
- ///
- /// Specifies a single-valued texture generation parameter, one of GL_OBJECT_LINEAR, GL_EYE_LINEAR, GL_SPHERE_MAP, GL_NORMAL_MAP, or GL_REFLECTION_MAP.
- ///
+ /// [length: pname]
+ /// Specifies a single-valued texture generation parameter, one of ObjectLinear, EyeLinear, SphereMap, NormalMap, or ReflectionMap.
///
[AutoGenerated(Category = "OES_texture_cube_map", Version = "", EntryPoint = "glTexGenivOES")]
[CLSCompliant(false)]
public static unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point|OES_texture_cube_map]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxOES")]
public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point|OES_texture_cube_map]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")]
[CLSCompliant(false)]
public static void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point|OES_texture_cube_map]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point|OES_texture_cube_map", Version = "", EntryPoint = "glTexGenxvOES")]
[CLSCompliant(false)]
public static unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxOES")]
public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")]
[CLSCompliant(false)]
public static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTexParameterxvOES")]
[CLSCompliant(false)]
public static unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glTranslatexOES")]
public static void Translatex(int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: OES_mapbuffer]
+ ///
[AutoGenerated(Category = "OES_mapbuffer", Version = "", EntryPoint = "glUnmapBufferOES")]
public static bool UnmapBuffer(OpenTK.Graphics.ES11.All target) { throw new NotImplementedException(); }
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ ///
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")]
[CLSCompliant(false)]
@@ -14924,10 +12894,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ ///
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bOES")]
[CLSCompliant(false)]
@@ -14936,10 +12904,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 2]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")]
[CLSCompliant(false)]
@@ -14948,10 +12914,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 2]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")]
[CLSCompliant(false)]
@@ -14960,10 +12924,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 2]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")]
[CLSCompliant(false)]
@@ -14972,25 +12934,26 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 2]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex2bvOES")]
[CLSCompliant(false)]
public static unsafe void Vertex2(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xOES")]
public static void Vertex2x(int x) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")]
[CLSCompliant(false)]
public static void Vertex2x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 2]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex2xvOES")]
[CLSCompliant(false)]
public static unsafe void Vertex2x(int* coords) { throw new NotImplementedException(); }
@@ -14998,10 +12961,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ ///
+ /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")]
[CLSCompliant(false)]
@@ -15010,10 +12974,11 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ ///
+ /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bOES")]
[CLSCompliant(false)]
@@ -15022,10 +12987,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 3]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")]
[CLSCompliant(false)]
@@ -15034,10 +12997,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 3]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")]
[CLSCompliant(false)]
@@ -15046,10 +13007,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 3]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")]
[CLSCompliant(false)]
@@ -15058,10 +13017,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 3]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")]
[CLSCompliant(false)]
@@ -15070,10 +13027,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 3]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")]
[CLSCompliant(false)]
@@ -15082,30 +13037,33 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 3]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex3bvOES")]
[CLSCompliant(false)]
public static unsafe void Vertex3(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xOES")]
public static void Vertex3x(int x, int y) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")]
[CLSCompliant(false)]
public static void Vertex3x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")]
[CLSCompliant(false)]
public static void Vertex3x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 3]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex3xvOES")]
[CLSCompliant(false)]
public static unsafe void Vertex3x(int* coords) { throw new NotImplementedException(); }
@@ -15113,10 +13071,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ ///
+ /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")]
[CLSCompliant(false)]
@@ -15125,10 +13087,14 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ ///
+ /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
+ ///
+ ///
+ /// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
+ ///
+ ///
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bOES")]
[CLSCompliant(false)]
@@ -15137,10 +13103,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 4]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")]
[CLSCompliant(false)]
@@ -15149,10 +13113,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 4]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")]
[CLSCompliant(false)]
@@ -15161,10 +13123,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 4]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")]
[CLSCompliant(false)]
@@ -15173,10 +13133,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 4]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")]
[CLSCompliant(false)]
@@ -15185,10 +13143,8 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 4]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")]
[CLSCompliant(false)]
@@ -15197,39 +13153,51 @@ namespace OpenTK.Graphics.ES11
/// [requires: OES_byte_coordinates]
/// Specify a vertex
///
- ///
- ///
+ /// [length: 4]
/// Specify x, y, z, and w coordinates of a vertex. Not all parameters are present in all forms of the command.
- ///
///
[AutoGenerated(Category = "OES_byte_coordinates", Version = "", EntryPoint = "glVertex4bvOES")]
[CLSCompliant(false)]
public static unsafe void Vertex4(SByte* coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xOES")]
public static void Vertex4x(int x, int y, int z) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")]
[CLSCompliant(false)]
public static void Vertex4x(int[] coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")]
[CLSCompliant(false)]
public static void Vertex4x(ref int coords) { throw new NotImplementedException(); }
/// [requires: OES_fixed_point]
+ /// [length: 4]
[AutoGenerated(Category = "OES_fixed_point", Version = "", EntryPoint = "glVertex4xvOES")]
[CLSCompliant(false)]
public static unsafe void Vertex4x(int* coords) { throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")]
public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer) { throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")]
[CLSCompliant(false)]
public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
@@ -15237,6 +13205,10 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")]
[CLSCompliant(false)]
public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
@@ -15244,6 +13216,10 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")]
[CLSCompliant(false)]
public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
@@ -15251,6 +13227,10 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: OES_matrix_palette]
+ ///
+ ///
+ ///
+ /// [length: type,stride]
[AutoGenerated(Category = "OES_matrix_palette", Version = "", EntryPoint = "glWeightPointerOES")]
public static void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
where T3 : struct
@@ -15261,40 +13241,50 @@ namespace OpenTK.Graphics.ES11
public static partial class Qcom
{
/// [requires: QCOM_driver_control]
+ ///
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")]
[CLSCompliant(false)]
public static void DisableDriverControl(Int32 driverControl) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glDisableDriverControlQCOM")]
[CLSCompliant(false)]
public static void DisableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")]
[CLSCompliant(false)]
public static void EnableDriverControl(Int32 driverControl) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glEnableDriverControlQCOM")]
[CLSCompliant(false)]
public static void EnableDriverControl(UInt32 driverControl) { throw new NotImplementedException(); }
/// [requires: QCOM_tiled_rendering]
+ ///
[AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")]
[CLSCompliant(false)]
public static void EndTiling(Int32 preserveMask) { throw new NotImplementedException(); }
/// [requires: QCOM_tiled_rendering]
+ ///
[AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glEndTilingQCOM")]
[CLSCompliant(false)]
public static void EndTiling(UInt32 preserveMask) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")]
public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [OutAttribute] IntPtr @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")]
[CLSCompliant(false)]
public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[] @params)
@@ -15302,6 +13292,8 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")]
[CLSCompliant(false)]
public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,] @params)
@@ -15309,6 +13301,8 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")]
[CLSCompliant(false)]
public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] T1[,,] @params)
@@ -15316,306 +13310,504 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBufferPointervQCOM")]
public static void ExtGetBufferPointer(OpenTK.Graphics.ES11.All target, [InAttribute, OutAttribute] ref T1 @params)
where T1 : struct
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetBuffers([OutAttribute] out Int32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetBuffers([OutAttribute] Int32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetBuffers([OutAttribute] out UInt32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxBuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetBuffers([OutAttribute] UInt32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetFramebuffers([OutAttribute] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetFramebuffers([OutAttribute] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetFramebuffers([OutAttribute] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxFramebuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetFramebuffers([OutAttribute] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetProgramBinarySource(Int32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32[] length) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] out Int32 length) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramBinarySourceQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgram([OutAttribute] out Int32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetProgram([OutAttribute] Int32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static void ExtGetProgram([OutAttribute] out UInt32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxPrograms]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetProgram([OutAttribute] UInt32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetRenderbuffers([OutAttribute] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetRenderbuffers([OutAttribute] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static void ExtGetRenderbuffers([OutAttribute] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ /// [length: maxRenderbuffers]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetRenderbuffers([OutAttribute] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static void ExtGetShaders([OutAttribute] out Int32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetShaders([OutAttribute] Int32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static void ExtGetShaders([OutAttribute] out UInt32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ /// [length: maxShaders]
+ ///
+ /// [length: 1]
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetShaders([OutAttribute] UInt32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetTexLevelParameter(Int32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexLevelParameterivQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetTexLevelParameter(UInt32 texture, OpenTK.Graphics.ES11.All face, Int32 level, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")]
public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [OutAttribute] IntPtr texels) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[] texels)
@@ -15623,6 +13815,17 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,] texels)
@@ -15630,6 +13833,17 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")]
[CLSCompliant(false)]
public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T10[,,] texels)
@@ -15637,121 +13851,207 @@ namespace OpenTK.Graphics.ES11
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexSubImageQCOM")]
public static void ExtGetTexSubImage(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 width, Int32 height, Int32 depth, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T10 texels)
where T10 : struct
{ throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")]
[CLSCompliant(false)]
public static void ExtGetTextures([OutAttribute] Int32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")]
[CLSCompliant(false)]
public static void ExtGetTextures([OutAttribute] out Int32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetTextures([OutAttribute] Int32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")]
[CLSCompliant(false)]
public static void ExtGetTextures([OutAttribute] UInt32[] textures, Int32 maxTextures, [OutAttribute] Int32[] numTextures) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")]
[CLSCompliant(false)]
public static void ExtGetTextures([OutAttribute] out UInt32 textures, Int32 maxTextures, [OutAttribute] out Int32 numTextures) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetTexturesQCOM")]
[CLSCompliant(false)]
public static unsafe void ExtGetTextures([OutAttribute] UInt32* textures, Int32 maxTextures, [OutAttribute] Int32* numTextures) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")]
[CLSCompliant(false)]
public static bool ExtIsProgramBinary(Int32 program) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get2]
+ ///
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtIsProgramBinaryQCOM")]
[CLSCompliant(false)]
public static bool ExtIsProgramBinary(UInt32 program) { throw new NotImplementedException(); }
/// [requires: QCOM_extended_get]
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtTexObjectStateOverrideiQCOM")]
public static void ExtTexObjectStateOverride(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")]
[CLSCompliant(false)]
public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] Int32[] driverControls) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")]
[CLSCompliant(false)]
public static void GetDriverControl([OutAttribute] Int32[] num, Int32 size, [OutAttribute] UInt32[] driverControls) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")]
[CLSCompliant(false)]
public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out Int32 driverControls) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")]
[CLSCompliant(false)]
public static void GetDriverControl([OutAttribute] out Int32 num, Int32 size, [OutAttribute] out UInt32 driverControls) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")]
[CLSCompliant(false)]
public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] Int32* driverControls) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ /// [length: size]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlsQCOM")]
[CLSCompliant(false)]
public static unsafe void GetDriverControl([OutAttribute] Int32* num, Int32 size, [OutAttribute] UInt32* driverControls) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")]
[CLSCompliant(false)]
public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")]
[CLSCompliant(false)]
public static void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")]
[CLSCompliant(false)]
public static unsafe void GetDriverControlString(Int32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")]
[CLSCompliant(false)]
public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")]
[CLSCompliant(false)]
public static void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); }
/// [requires: QCOM_driver_control]
+ ///
+ ///
+ ///
+ /// [length: bufSize]
[AutoGenerated(Category = "QCOM_driver_control", Version = "", EntryPoint = "glGetDriverControlStringQCOM")]
[CLSCompliant(false)]
public static unsafe void GetDriverControlString(UInt32 driverControl, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder driverControlString) { throw new NotImplementedException(); }
/// [requires: QCOM_tiled_rendering]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")]
[CLSCompliant(false)]
public static void StartTiling(Int32 x, Int32 y, Int32 width, Int32 height, Int32 preserveMask) { throw new NotImplementedException(); }
/// [requires: QCOM_tiled_rendering]
+ ///
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "QCOM_tiled_rendering", Version = "", EntryPoint = "glStartTilingQCOM")]
[CLSCompliant(false)]
public static void StartTiling(UInt32 x, UInt32 y, UInt32 width, UInt32 height, UInt32 preserveMask) { throw new NotImplementedException(); }
diff --git a/Source/OpenTK/Graphics/ES11/Helper.cs b/Source/OpenTK/Graphics/ES11/Helper.cs
index 57629fdd..a08d8263 100644
--- a/Source/OpenTK/Graphics/ES11/Helper.cs
+++ b/Source/OpenTK/Graphics/ES11/Helper.cs
@@ -16,7 +16,8 @@ namespace OpenTK.Graphics.ES11
static readonly object sync_root = new object();
static IntPtr[] EntryPoints;
- static string[] EntryPointNames;
+ static byte[] EntryPointNames;
+ static int[] EntryPointNameOffsets;
#region Constructors
@@ -27,6 +28,7 @@ namespace OpenTK.Graphics.ES11
{
EntryPointsInstance = EntryPoints;
EntryPointNamesInstance = EntryPointNames;
+ EntryPointNameOffsetsInstance = EntryPointNameOffsets;
}
#endregion
diff --git a/Source/OpenTK/Graphics/ES20/ES20.cs b/Source/OpenTK/Graphics/ES20/ES20.cs
index 0bffac7f..ad168e69 100644
--- a/Source/OpenTK/Graphics/ES20/ES20.cs
+++ b/Source/OpenTK/Graphics/ES20/ES20.cs
@@ -38,269 +38,489 @@ namespace OpenTK.Graphics.ES20
{
static GL()
{
- EntryPointNames = new string[]
+ EntryPointNames = new byte[]
{
- "glActiveProgramEXT",
- "glActiveShaderProgramEXT",
- "glAlphaFuncQCOM",
- "glBeginPerfMonitorAMD",
- "glBeginPerfQueryINTEL",
- "glBeginQueryEXT",
- "glBindProgramPipelineEXT",
- "glBindVertexArrayOES",
- "glBlendBarrierNV",
- "glBlendEquationEXT",
- "glBlendParameteriNV",
- "glBlitFramebufferANGLE",
- "glBlitFramebufferNV",
- "glClientWaitSyncAPPLE",
- "glCompressedTexImage3DOES",
- "glCompressedTexSubImage3DOES",
- "glCopyBufferSubDataNV",
- "glCopyTexSubImage3DOES",
- "glCopyTextureLevelsAPPLE",
- "glCoverageMaskNV",
- "glCoverageOperationNV",
- "glCreatePerfQueryINTEL",
- "glCreateShaderProgramEXT",
- "glCreateShaderProgramvEXT",
- "glDebugMessageCallbackKHR",
- "glDebugMessageControlKHR",
- "glDebugMessageInsertKHR",
- "glDeleteFencesNV",
- "glDeletePerfMonitorsAMD",
- "glDeletePerfQueryINTEL",
- "glDeleteProgramPipelinesEXT",
- "glDeleteQueriesEXT",
- "glDeleteSyncAPPLE",
- "glDeleteVertexArraysOES",
- "glDisableDriverControlQCOM",
- "glDiscardFramebufferEXT",
- "glDrawArraysInstancedANGLE",
- "glDrawArraysInstancedEXT",
- "glDrawArraysInstancedNV",
- "glDrawBuffersEXT",
- "glDrawBuffersIndexedEXT",
- "glDrawBuffersNV",
- "glDrawElementsInstancedANGLE",
- "glDrawElementsInstancedEXT",
- "glDrawElementsInstancedNV",
- "glEGLImageTargetRenderbufferStorageOES",
- "glEGLImageTargetTexture2DOES",
- "glEnableDriverControlQCOM",
- "glEndPerfMonitorAMD",
- "glEndPerfQueryINTEL",
- "glEndQueryEXT",
- "glEndTilingQCOM",
- "glExtGetBufferPointervQCOM",
- "glExtGetBuffersQCOM",
- "glExtGetFramebuffersQCOM",
- "glExtGetProgramBinarySourceQCOM",
- "glExtGetProgramsQCOM",
- "glExtGetRenderbuffersQCOM",
- "glExtGetShadersQCOM",
- "glExtGetTexLevelParameterivQCOM",
- "glExtGetTexSubImageQCOM",
- "glExtGetTexturesQCOM",
- "glExtIsProgramBinaryQCOM",
- "glExtTexObjectStateOverrideiQCOM",
- "glFenceSyncAPPLE",
- "glFinishFenceNV",
- "glFlushMappedBufferRangeEXT",
- "glFramebufferTexture2DMultisampleEXT",
- "glFramebufferTexture2DMultisampleIMG",
- "glFramebufferTexture3DOES",
- "glGenFencesNV",
- "glGenPerfMonitorsAMD",
- "glGenProgramPipelinesEXT",
- "glGenQueriesEXT",
- "glGenVertexArraysOES",
- "glGetBufferPointervOES",
- "glGetDebugMessageLogKHR",
- "glGetDriverControlsQCOM",
- "glGetDriverControlStringQCOM",
- "glGetFenceivNV",
- "glGetFirstPerfQueryIdINTEL",
- "glGetGraphicsResetStatusEXT",
- "glGetInteger64vAPPLE",
- "glGetIntegeri_vEXT",
- "glGetNextPerfQueryIdINTEL",
- "glGetnUniformfvEXT",
- "glGetnUniformivEXT",
- "glGetObjectLabelEXT",
- "glGetObjectLabelKHR",
- "glGetObjectPtrLabelKHR",
- "glGetPerfCounterInfoINTEL",
- "glGetPerfMonitorCounterDataAMD",
- "glGetPerfMonitorCounterInfoAMD",
- "glGetPerfMonitorCountersAMD",
- "glGetPerfMonitorCounterStringAMD",
- "glGetPerfMonitorGroupsAMD",
- "glGetPerfMonitorGroupStringAMD",
- "glGetPerfQueryDataINTEL",
- "glGetPerfQueryIdByNameINTEL",
- "glGetPerfQueryInfoINTEL",
- "glGetPointervKHR",
- "glGetProgramBinaryOES",
- "glGetProgramPipelineInfoLogEXT",
- "glGetProgramPipelineivEXT",
- "glGetQueryivEXT",
- "glGetQueryObjecti64vEXT",
- "glGetQueryObjectivEXT",
- "glGetQueryObjectui64vEXT",
- "glGetQueryObjectuivEXT",
- "glGetSyncivAPPLE",
- "glGetTranslatedShaderSourceANGLE",
- "glInsertEventMarkerEXT",
- "glIsFenceNV",
- "glIsProgramPipelineEXT",
- "glIsQueryEXT",
- "glIsSyncAPPLE",
- "glIsVertexArrayOES",
- "glLabelObjectEXT",
- "glMapBufferOES",
- "glMapBufferRangeEXT",
- "glMultiDrawArraysEXT",
- "glMultiDrawElementsEXT",
- "glObjectLabelKHR",
- "glObjectPtrLabelKHR",
- "glPopDebugGroupKHR",
- "glPopGroupMarkerEXT",
- "glProgramBinaryOES",
- "glProgramParameteriEXT",
- "glProgramUniform1fEXT",
- "glProgramUniform1fvEXT",
- "glProgramUniform1iEXT",
- "glProgramUniform1ivEXT",
- "glProgramUniform1uiEXT",
- "glProgramUniform1uivEXT",
- "glProgramUniform2fEXT",
- "glProgramUniform2fvEXT",
- "glProgramUniform2iEXT",
- "glProgramUniform2ivEXT",
- "glProgramUniform2uiEXT",
- "glProgramUniform2uivEXT",
- "glProgramUniform3fEXT",
- "glProgramUniform3fvEXT",
- "glProgramUniform3iEXT",
- "glProgramUniform3ivEXT",
- "glProgramUniform3uiEXT",
- "glProgramUniform3uivEXT",
- "glProgramUniform4fEXT",
- "glProgramUniform4fvEXT",
- "glProgramUniform4iEXT",
- "glProgramUniform4ivEXT",
- "glProgramUniform4uiEXT",
- "glProgramUniform4uivEXT",
- "glProgramUniformMatrix2fvEXT",
- "glProgramUniformMatrix2x3fvEXT",
- "glProgramUniformMatrix2x4fvEXT",
- "glProgramUniformMatrix3fvEXT",
- "glProgramUniformMatrix3x2fvEXT",
- "glProgramUniformMatrix3x4fvEXT",
- "glProgramUniformMatrix4fvEXT",
- "glProgramUniformMatrix4x2fvEXT",
- "glProgramUniformMatrix4x3fvEXT",
- "glPushDebugGroupKHR",
- "glPushGroupMarkerEXT",
- "glQueryCounterEXT",
- "glReadBufferIndexedEXT",
- "glReadBufferNV",
- "glReadnPixelsEXT",
- "glRenderbufferStorageMultisampleANGLE",
- "glRenderbufferStorageMultisampleAPPLE",
- "glRenderbufferStorageMultisampleEXT",
- "glRenderbufferStorageMultisampleIMG",
- "glRenderbufferStorageMultisampleNV",
- "glResolveMultisampleFramebufferAPPLE",
- "glSelectPerfMonitorCountersAMD",
- "glSetFenceNV",
- "glStartTilingQCOM",
- "glTestFenceNV",
- "glTexImage3DOES",
- "glTexStorage1DEXT",
- "glTexStorage2DEXT",
- "glTexStorage3DEXT",
- "glTexSubImage3DOES",
- "glTextureStorage1DEXT",
- "glTextureStorage2DEXT",
- "glTextureStorage3DEXT",
- "glUniformMatrix2x3fvNV",
- "glUniformMatrix2x4fvNV",
- "glUniformMatrix3x2fvNV",
- "glUniformMatrix3x4fvNV",
- "glUniformMatrix4x2fvNV",
- "glUniformMatrix4x3fvNV",
- "glUnmapBufferOES",
- "glUseProgramStagesEXT",
- "glUseShaderProgramEXT",
- "glValidateProgramPipelineEXT",
- "glVertexAttribDivisorANGLE",
- "glVertexAttribDivisorEXT",
- "glVertexAttribDivisorNV",
- "glWaitSyncAPPLE",
+ 103, 108, 65, 99, 116, 105, 118, 101, 80, 114, 111, 103, 114, 97, 109, 69, 88, 84, 0,
+ 103, 108, 65, 99, 116, 105, 118, 101, 83, 104, 97, 100, 101, 114, 80, 114, 111, 103, 114, 97, 109, 69, 88, 84, 0,
+ 103, 108, 65, 108, 112, 104, 97, 70, 117, 110, 99, 81, 67, 79, 77, 0,
+ 103, 108, 66, 101, 103, 105, 110, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 65, 77, 68, 0,
+ 103, 108, 66, 101, 103, 105, 110, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 78, 84, 69, 76, 0,
+ 103, 108, 66, 101, 103, 105, 110, 81, 117, 101, 114, 121, 69, 88, 84, 0,
+ 103, 108, 66, 105, 110, 100, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 69, 88, 84, 0,
+ 103, 108, 66, 105, 110, 100, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 79, 69, 83, 0,
+ 103, 108, 66, 108, 101, 110, 100, 66, 97, 114, 114, 105, 101, 114, 78, 86, 0,
+ 103, 108, 66, 108, 101, 110, 100, 69, 113, 117, 97, 116, 105, 111, 110, 69, 88, 84, 0,
+ 103, 108, 66, 108, 101, 110, 100, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 78, 86, 0,
+ 103, 108, 66, 108, 105, 116, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 65, 78, 71, 76, 69, 0,
+ 103, 108, 66, 108, 105, 116, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 78, 86, 0,
+ 103, 108, 67, 108, 105, 101, 110, 116, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 67, 111, 109, 112, 114, 101, 115, 115, 101, 100, 84, 101, 120, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0,
+ 103, 108, 67, 111, 109, 112, 114, 101, 115, 115, 101, 100, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0,
+ 103, 108, 67, 111, 112, 121, 66, 117, 102, 102, 101, 114, 83, 117, 98, 68, 97, 116, 97, 78, 86, 0,
+ 103, 108, 67, 111, 112, 121, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0,
+ 103, 108, 67, 111, 112, 121, 84, 101, 120, 116, 117, 114, 101, 76, 101, 118, 101, 108, 115, 65, 80, 80, 76, 69, 0,
+ 103, 108, 67, 111, 118, 101, 114, 97, 103, 101, 77, 97, 115, 107, 78, 86, 0,
+ 103, 108, 67, 111, 118, 101, 114, 97, 103, 101, 79, 112, 101, 114, 97, 116, 105, 111, 110, 78, 86, 0,
+ 103, 108, 67, 114, 101, 97, 116, 101, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 78, 84, 69, 76, 0,
+ 103, 108, 67, 114, 101, 97, 116, 101, 83, 104, 97, 100, 101, 114, 80, 114, 111, 103, 114, 97, 109, 69, 88, 84, 0,
+ 103, 108, 67, 114, 101, 97, 116, 101, 83, 104, 97, 100, 101, 114, 80, 114, 111, 103, 114, 97, 109, 118, 69, 88, 84, 0,
+ 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 67, 97, 108, 108, 98, 97, 99, 107, 75, 72, 82, 0,
+ 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 67, 111, 110, 116, 114, 111, 108, 75, 72, 82, 0,
+ 103, 108, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 73, 110, 115, 101, 114, 116, 75, 72, 82, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 70, 101, 110, 99, 101, 115, 78, 86, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 115, 65, 77, 68, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 78, 84, 69, 76, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 115, 69, 88, 84, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 81, 117, 101, 114, 105, 101, 115, 69, 88, 84, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 68, 101, 108, 101, 116, 101, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 115, 79, 69, 83, 0,
+ 103, 108, 68, 105, 115, 97, 98, 108, 101, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 81, 67, 79, 77, 0,
+ 103, 108, 68, 105, 115, 99, 97, 114, 100, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 69, 88, 84, 0,
+ 103, 108, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 73, 110, 115, 116, 97, 110, 99, 101, 100, 65, 78, 71, 76, 69, 0,
+ 103, 108, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 73, 110, 115, 116, 97, 110, 99, 101, 100, 69, 88, 84, 0,
+ 103, 108, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 73, 110, 115, 116, 97, 110, 99, 101, 100, 78, 86, 0,
+ 103, 108, 68, 114, 97, 119, 66, 117, 102, 102, 101, 114, 115, 69, 88, 84, 0,
+ 103, 108, 68, 114, 97, 119, 66, 117, 102, 102, 101, 114, 115, 73, 110, 100, 101, 120, 101, 100, 69, 88, 84, 0,
+ 103, 108, 68, 114, 97, 119, 66, 117, 102, 102, 101, 114, 115, 78, 86, 0,
+ 103, 108, 68, 114, 97, 119, 69, 108, 101, 109, 101, 110, 116, 115, 73, 110, 115, 116, 97, 110, 99, 101, 100, 65, 78, 71, 76, 69, 0,
+ 103, 108, 68, 114, 97, 119, 69, 108, 101, 109, 101, 110, 116, 115, 73, 110, 115, 116, 97, 110, 99, 101, 100, 69, 88, 84, 0,
+ 103, 108, 68, 114, 97, 119, 69, 108, 101, 109, 101, 110, 116, 115, 73, 110, 115, 116, 97, 110, 99, 101, 100, 78, 86, 0,
+ 103, 108, 69, 71, 76, 73, 109, 97, 103, 101, 84, 97, 114, 103, 101, 116, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 79, 69, 83, 0,
+ 103, 108, 69, 71, 76, 73, 109, 97, 103, 101, 84, 97, 114, 103, 101, 116, 84, 101, 120, 116, 117, 114, 101, 50, 68, 79, 69, 83, 0,
+ 103, 108, 69, 110, 97, 98, 108, 101, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 81, 67, 79, 77, 0,
+ 103, 108, 69, 110, 100, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 65, 77, 68, 0,
+ 103, 108, 69, 110, 100, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 78, 84, 69, 76, 0,
+ 103, 108, 69, 110, 100, 81, 117, 101, 114, 121, 69, 88, 84, 0,
+ 103, 108, 69, 110, 100, 84, 105, 108, 105, 110, 103, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 66, 117, 102, 102, 101, 114, 80, 111, 105, 110, 116, 101, 114, 118, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 66, 117, 102, 102, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 66, 105, 110, 97, 114, 121, 83, 111, 117, 114, 99, 101, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 83, 104, 97, 100, 101, 114, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 84, 101, 120, 76, 101, 118, 101, 108, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 118, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 71, 101, 116, 84, 101, 120, 116, 117, 114, 101, 115, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 73, 115, 80, 114, 111, 103, 114, 97, 109, 66, 105, 110, 97, 114, 121, 81, 67, 79, 77, 0,
+ 103, 108, 69, 120, 116, 84, 101, 120, 79, 98, 106, 101, 99, 116, 83, 116, 97, 116, 101, 79, 118, 101, 114, 114, 105, 100, 101, 105, 81, 67, 79, 77, 0,
+ 103, 108, 70, 101, 110, 99, 101, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 70, 105, 110, 105, 115, 104, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 70, 108, 117, 115, 104, 77, 97, 112, 112, 101, 100, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 84, 101, 120, 116, 117, 114, 101, 50, 68, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 69, 88, 84, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 84, 101, 120, 116, 117, 114, 101, 50, 68, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 73, 77, 71, 0,
+ 103, 108, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 84, 101, 120, 116, 117, 114, 101, 51, 68, 79, 69, 83, 0,
+ 103, 108, 71, 101, 110, 70, 101, 110, 99, 101, 115, 78, 86, 0,
+ 103, 108, 71, 101, 110, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 115, 65, 77, 68, 0,
+ 103, 108, 71, 101, 110, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 115, 69, 88, 84, 0,
+ 103, 108, 71, 101, 110, 81, 117, 101, 114, 105, 101, 115, 69, 88, 84, 0,
+ 103, 108, 71, 101, 110, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 115, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 66, 117, 102, 102, 101, 114, 80, 111, 105, 110, 116, 101, 114, 118, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 68, 101, 98, 117, 103, 77, 101, 115, 115, 97, 103, 101, 76, 111, 103, 75, 72, 82, 0,
+ 103, 108, 71, 101, 116, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 115, 81, 67, 79, 77, 0,
+ 103, 108, 71, 101, 116, 68, 114, 105, 118, 101, 114, 67, 111, 110, 116, 114, 111, 108, 83, 116, 114, 105, 110, 103, 81, 67, 79, 77, 0,
+ 103, 108, 71, 101, 116, 70, 101, 110, 99, 101, 105, 118, 78, 86, 0,
+ 103, 108, 71, 101, 116, 70, 105, 114, 115, 116, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 100, 73, 78, 84, 69, 76, 0,
+ 103, 108, 71, 101, 116, 71, 114, 97, 112, 104, 105, 99, 115, 82, 101, 115, 101, 116, 83, 116, 97, 116, 117, 115, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 73, 110, 116, 101, 103, 101, 114, 54, 52, 118, 65, 80, 80, 76, 69, 0,
+ 103, 108, 71, 101, 116, 73, 110, 116, 101, 103, 101, 114, 105, 95, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 78, 101, 120, 116, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 100, 73, 78, 84, 69, 76, 0,
+ 103, 108, 71, 101, 116, 110, 85, 110, 105, 102, 111, 114, 109, 102, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 110, 85, 110, 105, 102, 111, 114, 109, 105, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 75, 72, 82, 0,
+ 103, 108, 71, 101, 116, 79, 98, 106, 101, 99, 116, 80, 116, 114, 76, 97, 98, 101, 108, 75, 72, 82, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 67, 111, 117, 110, 116, 101, 114, 73, 110, 102, 111, 73, 78, 84, 69, 76, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 67, 111, 117, 110, 116, 101, 114, 68, 97, 116, 97, 65, 77, 68, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 67, 111, 117, 110, 116, 101, 114, 73, 110, 102, 111, 65, 77, 68, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 67, 111, 117, 110, 116, 101, 114, 115, 65, 77, 68, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 67, 111, 117, 110, 116, 101, 114, 83, 116, 114, 105, 110, 103, 65, 77, 68, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 71, 114, 111, 117, 112, 115, 65, 77, 68, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 71, 114, 111, 117, 112, 83, 116, 114, 105, 110, 103, 65, 77, 68, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 81, 117, 101, 114, 121, 68, 97, 116, 97, 73, 78, 84, 69, 76, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 100, 66, 121, 78, 97, 109, 101, 73, 78, 84, 69, 76, 0,
+ 103, 108, 71, 101, 116, 80, 101, 114, 102, 81, 117, 101, 114, 121, 73, 110, 102, 111, 73, 78, 84, 69, 76, 0,
+ 103, 108, 71, 101, 116, 80, 111, 105, 110, 116, 101, 114, 118, 75, 72, 82, 0,
+ 103, 108, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 66, 105, 110, 97, 114, 121, 79, 69, 83, 0,
+ 103, 108, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 73, 110, 102, 111, 76, 111, 103, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 105, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 81, 117, 101, 114, 121, 105, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 81, 117, 101, 114, 121, 79, 98, 106, 101, 99, 116, 105, 54, 52, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 81, 117, 101, 114, 121, 79, 98, 106, 101, 99, 116, 105, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 81, 117, 101, 114, 121, 79, 98, 106, 101, 99, 116, 117, 105, 54, 52, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 81, 117, 101, 114, 121, 79, 98, 106, 101, 99, 116, 117, 105, 118, 69, 88, 84, 0,
+ 103, 108, 71, 101, 116, 83, 121, 110, 99, 105, 118, 65, 80, 80, 76, 69, 0,
+ 103, 108, 71, 101, 116, 84, 114, 97, 110, 115, 108, 97, 116, 101, 100, 83, 104, 97, 100, 101, 114, 83, 111, 117, 114, 99, 101, 65, 78, 71, 76, 69, 0,
+ 103, 108, 73, 110, 115, 101, 114, 116, 69, 118, 101, 110, 116, 77, 97, 114, 107, 101, 114, 69, 88, 84, 0,
+ 103, 108, 73, 115, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 73, 115, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 69, 88, 84, 0,
+ 103, 108, 73, 115, 81, 117, 101, 114, 121, 69, 88, 84, 0,
+ 103, 108, 73, 115, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
+ 103, 108, 73, 115, 86, 101, 114, 116, 101, 120, 65, 114, 114, 97, 121, 79, 69, 83, 0,
+ 103, 108, 76, 97, 98, 101, 108, 79, 98, 106, 101, 99, 116, 69, 88, 84, 0,
+ 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 77, 97, 112, 66, 117, 102, 102, 101, 114, 82, 97, 110, 103, 101, 69, 88, 84, 0,
+ 103, 108, 77, 117, 108, 116, 105, 68, 114, 97, 119, 65, 114, 114, 97, 121, 115, 69, 88, 84, 0,
+ 103, 108, 77, 117, 108, 116, 105, 68, 114, 97, 119, 69, 108, 101, 109, 101, 110, 116, 115, 69, 88, 84, 0,
+ 103, 108, 79, 98, 106, 101, 99, 116, 76, 97, 98, 101, 108, 75, 72, 82, 0,
+ 103, 108, 79, 98, 106, 101, 99, 116, 80, 116, 114, 76, 97, 98, 101, 108, 75, 72, 82, 0,
+ 103, 108, 80, 111, 112, 68, 101, 98, 117, 103, 71, 114, 111, 117, 112, 75, 72, 82, 0,
+ 103, 108, 80, 111, 112, 71, 114, 111, 117, 112, 77, 97, 114, 107, 101, 114, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 66, 105, 110, 97, 114, 121, 79, 69, 83, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 80, 97, 114, 97, 109, 101, 116, 101, 114, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 49, 102, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 49, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 49, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 49, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 49, 117, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 49, 117, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 50, 102, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 50, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 50, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 50, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 50, 117, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 50, 117, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 51, 102, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 51, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 51, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 51, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 51, 117, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 51, 117, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 52, 102, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 52, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 52, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 52, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 52, 117, 105, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 52, 117, 105, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 50, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 50, 120, 51, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 50, 120, 52, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 51, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 51, 120, 50, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 51, 120, 52, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 52, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 52, 120, 50, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 114, 111, 103, 114, 97, 109, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 52, 120, 51, 102, 118, 69, 88, 84, 0,
+ 103, 108, 80, 117, 115, 104, 68, 101, 98, 117, 103, 71, 114, 111, 117, 112, 75, 72, 82, 0,
+ 103, 108, 80, 117, 115, 104, 71, 114, 111, 117, 112, 77, 97, 114, 107, 101, 114, 69, 88, 84, 0,
+ 103, 108, 81, 117, 101, 114, 121, 67, 111, 117, 110, 116, 101, 114, 69, 88, 84, 0,
+ 103, 108, 82, 101, 97, 100, 66, 117, 102, 102, 101, 114, 73, 110, 100, 101, 120, 101, 100, 69, 88, 84, 0,
+ 103, 108, 82, 101, 97, 100, 66, 117, 102, 102, 101, 114, 78, 86, 0,
+ 103, 108, 82, 101, 97, 100, 110, 80, 105, 120, 101, 108, 115, 69, 88, 84, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 65, 78, 71, 76, 69, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 65, 80, 80, 76, 69, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 69, 88, 84, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 73, 77, 71, 0,
+ 103, 108, 82, 101, 110, 100, 101, 114, 98, 117, 102, 102, 101, 114, 83, 116, 111, 114, 97, 103, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 78, 86, 0,
+ 103, 108, 82, 101, 115, 111, 108, 118, 101, 77, 117, 108, 116, 105, 115, 97, 109, 112, 108, 101, 70, 114, 97, 109, 101, 98, 117, 102, 102, 101, 114, 65, 80, 80, 76, 69, 0,
+ 103, 108, 83, 101, 108, 101, 99, 116, 80, 101, 114, 102, 77, 111, 110, 105, 116, 111, 114, 67, 111, 117, 110, 116, 101, 114, 115, 65, 77, 68, 0,
+ 103, 108, 83, 101, 116, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 83, 116, 97, 114, 116, 84, 105, 108, 105, 110, 103, 81, 67, 79, 77, 0,
+ 103, 108, 84, 101, 115, 116, 70, 101, 110, 99, 101, 78, 86, 0,
+ 103, 108, 84, 101, 120, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 83, 117, 98, 73, 109, 97, 103, 101, 51, 68, 79, 69, 83, 0,
+ 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 49, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 50, 68, 69, 88, 84, 0,
+ 103, 108, 84, 101, 120, 116, 117, 114, 101, 83, 116, 111, 114, 97, 103, 101, 51, 68, 69, 88, 84, 0,
+ 103, 108, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 50, 120, 51, 102, 118, 78, 86, 0,
+ 103, 108, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 50, 120, 52, 102, 118, 78, 86, 0,
+ 103, 108, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 51, 120, 50, 102, 118, 78, 86, 0,
+ 103, 108, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 51, 120, 52, 102, 118, 78, 86, 0,
+ 103, 108, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 52, 120, 50, 102, 118, 78, 86, 0,
+ 103, 108, 85, 110, 105, 102, 111, 114, 109, 77, 97, 116, 114, 105, 120, 52, 120, 51, 102, 118, 78, 86, 0,
+ 103, 108, 85, 110, 109, 97, 112, 66, 117, 102, 102, 101, 114, 79, 69, 83, 0,
+ 103, 108, 85, 115, 101, 80, 114, 111, 103, 114, 97, 109, 83, 116, 97, 103, 101, 115, 69, 88, 84, 0,
+ 103, 108, 85, 115, 101, 83, 104, 97, 100, 101, 114, 80, 114, 111, 103, 114, 97, 109, 69, 88, 84, 0,
+ 103, 108, 86, 97, 108, 105, 100, 97, 116, 101, 80, 114, 111, 103, 114, 97, 109, 80, 105, 112, 101, 108, 105, 110, 101, 69, 88, 84, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 65, 116, 116, 114, 105, 98, 68, 105, 118, 105, 115, 111, 114, 65, 78, 71, 76, 69, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 65, 116, 116, 114, 105, 98, 68, 105, 118, 105, 115, 111, 114, 69, 88, 84, 0,
+ 103, 108, 86, 101, 114, 116, 101, 120, 65, 116, 116, 114, 105, 98, 68, 105, 118, 105, 115, 111, 114, 78, 86, 0,
+ 103, 108, 87, 97, 105, 116, 83, 121, 110, 99, 65, 80, 80, 76, 69, 0,
};
- EntryPoints = new IntPtr[EntryPointNames.Length];
+ EntryPointNameOffsets = new int[]
+ {
+ 0,
+ 19,
+ 44,
+ 60,
+ 82,
+ 104,
+ 120,
+ 145,
+ 166,
+ 183,
+ 202,
+ 222,
+ 245,
+ 265,
+ 287,
+ 313,
+ 342,
+ 364,
+ 387,
+ 412,
+ 429,
+ 451,
+ 474,
+ 499,
+ 525,
+ 551,
+ 576,
+ 600,
+ 617,
+ 641,
+ 664,
+ 692,
+ 711,
+ 729,
+ 753,
+ 780,
+ 804,
+ 831,
+ 856,
+ 880,
+ 897,
+ 921,
+ 937,
+ 966,
+ 993,
+ 1019,
+ 1058,
+ 1087,
+ 1113,
+ 1133,
+ 1153,
+ 1167,
+ 1183,
+ 1210,
+ 1230,
+ 1255,
+ 1287,
+ 1308,
+ 1334,
+ 1354,
+ 1386,
+ 1410,
+ 1431,
+ 1456,
+ 1489,
+ 1506,
+ 1522,
+ 1550,
+ 1587,
+ 1624,
+ 1650,
+ 1664,
+ 1685,
+ 1710,
+ 1726,
+ 1747,
+ 1770,
+ 1794,
+ 1818,
+ 1847,
+ 1862,
+ 1889,
+ 1917,
+ 1938,
+ 1957,
+ 1983,
+ 2002,
+ 2021,
+ 2041,
+ 2061,
+ 2084,
+ 2110,
+ 2141,
+ 2172,
+ 2200,
+ 2233,
+ 2259,
+ 2290,
+ 2314,
+ 2342,
+ 2366,
+ 2383,
+ 2405,
+ 2436,
+ 2462,
+ 2478,
+ 2502,
+ 2524,
+ 2549,
+ 2572,
+ 2589,
+ 2622,
+ 2645,
+ 2657,
+ 2680,
+ 2693,
+ 2707,
+ 2726,
+ 2743,
+ 2758,
+ 2778,
+ 2799,
+ 2822,
+ 2839,
+ 2859,
+ 2878,
+ 2898,
+ 2917,
+ 2940,
+ 2962,
+ 2985,
+ 3007,
+ 3030,
+ 3053,
+ 3077,
+ 3099,
+ 3122,
+ 3144,
+ 3167,
+ 3190,
+ 3214,
+ 3236,
+ 3259,
+ 3281,
+ 3304,
+ 3327,
+ 3351,
+ 3373,
+ 3396,
+ 3418,
+ 3441,
+ 3464,
+ 3488,
+ 3517,
+ 3548,
+ 3579,
+ 3608,
+ 3639,
+ 3670,
+ 3699,
+ 3730,
+ 3761,
+ 3781,
+ 3802,
+ 3820,
+ 3843,
+ 3858,
+ 3875,
+ 3913,
+ 3951,
+ 3987,
+ 4023,
+ 4058,
+ 4095,
+ 4126,
+ 4139,
+ 4157,
+ 4171,
+ 4187,
+ 4205,
+ 4223,
+ 4241,
+ 4260,
+ 4282,
+ 4304,
+ 4326,
+ 4349,
+ 4372,
+ 4395,
+ 4418,
+ 4441,
+ 4464,
+ 4481,
+ 4503,
+ 4525,
+ 4554,
+ 4581,
+ 4606,
+ 4630,
+ };
+ EntryPoints = new IntPtr[EntryPointNameOffsets.Length];
}
public static partial class Amd
{
/// [requires: AMD_performance_monitor]
+ ///
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")]
[CLSCompliant(false)]
public static void BeginPerfMonitor(Int32 monitor) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glBeginPerfMonitorAMD")]
[CLSCompliant(false)]
public static void BeginPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static void DeletePerfMonitor(Int32 monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static void DeletePerfMonitor(UInt32 monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static void DeletePerfMonitors(Int32 n, Int32[] monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static void DeletePerfMonitors(Int32 n, ref Int32 monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static unsafe void DeletePerfMonitors(Int32 n, Int32* monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static void DeletePerfMonitors(Int32 n, UInt32[] monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static void DeletePerfMonitors(Int32 n, ref UInt32 monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glDeletePerfMonitorsAMD")]
[CLSCompliant(false)]
public static unsafe void DeletePerfMonitors(Int32 n, UInt32* monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")]
[CLSCompliant(false)]
public static void EndPerfMonitor(Int32 monitor) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glEndPerfMonitorAMD")]
[CLSCompliant(false)]
public static void EndPerfMonitor(UInt32 monitor) { throw new NotImplementedException(); }
@@ -311,71 +531,121 @@ namespace OpenTK.Graphics.ES20
public static Int32 GenPerfMonitor() { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")]
[CLSCompliant(false)]
public static void GenPerfMonitors(Int32 n, [OutAttribute] Int32[] monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")]
[CLSCompliant(false)]
public static void GenPerfMonitors(Int32 n, [OutAttribute] out Int32 monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")]
[CLSCompliant(false)]
public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] Int32* monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")]
[CLSCompliant(false)]
public static void GenPerfMonitors(Int32 n, [OutAttribute] UInt32[] monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")]
[CLSCompliant(false)]
public static void GenPerfMonitors(Int32 n, [OutAttribute] out UInt32 monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: n]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGenPerfMonitorsAMD")]
[CLSCompliant(false)]
public static unsafe void GenPerfMonitors(Int32 n, [OutAttribute] UInt32* monitors) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: dataSize]
+ /// [length: 1]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] Int32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: dataSize]
+ /// [length: 1]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] out Int32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: dataSize]
+ /// [length: 1]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorCounterData(Int32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] Int32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: dataSize]
+ /// [length: 1]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] UInt32[] data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: dataSize]
+ /// [length: 1]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] out UInt32 data, [OutAttribute] out Int32 bytesWritten) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: dataSize]
+ /// [length: 1]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterDataAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorCounterData(UInt32 monitor, OpenTK.Graphics.ES20.All pname, Int32 dataSize, [OutAttribute] UInt32* data, [OutAttribute] Int32* bytesWritten) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[] data)
@@ -383,6 +653,10 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,] data)
@@ -390,6 +664,10 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,,] data)
@@ -397,6 +675,10 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(Int32 group, Int32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T3 data)
@@ -404,11 +686,19 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr data) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[] data)
@@ -416,6 +706,10 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,] data)
@@ -423,6 +717,10 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T3[,,] data)
@@ -430,6 +728,10 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: pname]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterInfoAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterInfo(UInt32 group, UInt32 counter, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T3 data)
@@ -437,131 +739,245 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: 1]
+ /// [length: 1]
+ ///
+ /// [length: counterSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] Int32[] counters) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: 1]
+ /// [length: 1]
+ ///
+ /// [length: counterSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounters(Int32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out Int32 counters) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: 1]
+ /// [length: 1]
+ ///
+ /// [length: counterSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorCounters(Int32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] Int32* counters) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: 1]
+ /// [length: 1]
+ ///
+ /// [length: counterSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32[] counters) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: 1]
+ /// [length: 1]
+ ///
+ /// [length: counterSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounters(UInt32 group, [OutAttribute] out Int32 numCounters, [OutAttribute] out Int32 maxActiveCounters, Int32 counterSize, [OutAttribute] out UInt32 counters) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ /// [length: 1]
+ /// [length: 1]
+ ///
+ /// [length: counterSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorCounters(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32* counters) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorCounterString(Int32 group, Int32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorCounterStringAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorCounterString(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: 1]
+ ///
+ /// [length: groupsSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] Int32[] groups) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: 1]
+ ///
+ /// [length: groupsSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out Int32 groups) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: 1]
+ ///
+ /// [length: groupsSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] UInt32[] groups) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: 1]
+ ///
+ /// [length: groupsSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorGroups([OutAttribute] out Int32 numGroups, Int32 groupsSize, [OutAttribute] out UInt32 groups) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: 1]
+ ///
+ /// [length: groupsSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] Int32* groups) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ /// [length: 1]
+ ///
+ /// [length: groupsSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupsAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorGroups([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorGroupString(Int32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")]
[CLSCompliant(false)]
public static void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ /// [length: 1]
+ /// [length: bufSize]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glGetPerfMonitorGroupStringAMD")]
[CLSCompliant(false)]
public static unsafe void GetPerfMonitorGroupString(UInt32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ ///
+ /// [length: numCounters]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32[] counterList) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ ///
+ /// [length: numCounters]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] out Int32 counterList) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ ///
+ /// [length: numCounters]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static unsafe void SelectPerfMonitorCounters(Int32 monitor, bool enable, Int32 group, Int32 numCounters, [OutAttribute] Int32* counterList) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ ///
+ /// [length: numCounters]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32[] counterList) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ ///
+ /// [length: numCounters]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] out UInt32 counterList) { throw new NotImplementedException(); }
/// [requires: AMD_performance_monitor]
+ ///
+ ///
+ ///
+ ///
+ /// [length: numCounters]
[AutoGenerated(Category = "AMD_performance_monitor", Version = "", EntryPoint = "glSelectPerfMonitorCountersAMD")]
[CLSCompliant(false)]
public static unsafe void SelectPerfMonitorCounters(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32* counterList) { throw new NotImplementedException(); }
@@ -573,25 +989,35 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_framebuffer_blit]
/// Copy a block of pixels from the read framebuffer to the draw framebuffer
///
- ///
- ///
+ ///
/// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
- ///
///
- ///
- ///
+ ///
+ /// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
+ ///
+ ///
+ /// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
+ ///
+ ///
+ /// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
+ ///
+ ///
/// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
- ///
///
- ///
- ///
- /// The bitwise OR of the flags indicating which buffers are to be copied. The allowed flags are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
///
- ///
- ///
- /// Specifies the interpolation to be applied if the image is stretched. Must be GL_NEAREST or GL_LINEAR.
- ///
+ ///
+ /// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
+ ///
+ ///
+ /// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
+ ///
+ ///
+ /// The bitwise OR of the flags indicating which buffers are to be copied. The allowed flags are ColorBufferBit, DepthBufferBit and StencilBufferBit.
+ ///
+ ///
+ /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")]
@@ -600,25 +1026,35 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_framebuffer_blit]
/// Copy a block of pixels from the read framebuffer to the draw framebuffer
///
- ///
- ///
+ ///
/// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
- ///
///
- ///
- ///
+ ///
+ /// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
+ ///
+ ///
+ /// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
+ ///
+ ///
+ /// Specify the bounds of the source rectangle within the read buffer of the read framebuffer.
+ ///
+ ///
/// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
- ///
///
- ///
- ///
- /// The bitwise OR of the flags indicating which buffers are to be copied. The allowed flags are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
///
- ///
- ///
- /// Specifies the interpolation to be applied if the image is stretched. Must be GL_NEAREST or GL_LINEAR.
- ///
+ ///
+ /// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
+ ///
+ ///
+ /// Specify the bounds of the destination rectangle within the write buffer of the write framebuffer.
+ ///
+ ///
+ /// The bitwise OR of the flags indicating which buffers are to be copied. The allowed flags are ColorBufferBit, DepthBufferBit and StencilBufferBit.
+ ///
+ ///
+ /// Specifies the interpolation to be applied if the image is stretched. Must be Nearest or Linear.
///
[AutoGenerated(Category = "ANGLE_framebuffer_blit", Version = "", EntryPoint = "glBlitFramebufferANGLE")]
public static void BlitFramebuffer(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.ES20.ClearBufferMask mask, OpenTK.Graphics.ES20.BlitFramebufferFilter filter) { throw new NotImplementedException(); }
@@ -626,25 +1062,17 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a range of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES GL_LINES_ADJACENCY, GL_LINE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY, GL_TRIANGLE_STRIP_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, TrianglesLinesAdjacency, LineStripAdjacency, TrianglesAdjacency, TriangleStripAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")]
@@ -653,25 +1081,17 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a range of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES GL_LINES_ADJACENCY, GL_LINE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY, GL_TRIANGLE_STRIP_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, TrianglesLinesAdjacency, LineStripAdjacency, TrianglesAdjacency, TriangleStripAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawArraysInstancedANGLE")]
public static void DrawArraysInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count, Int32 primcount) { throw new NotImplementedException(); }
@@ -679,30 +1099,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
@@ -711,30 +1121,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
@@ -746,30 +1146,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
@@ -781,30 +1171,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
@@ -816,30 +1196,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
@@ -850,30 +1220,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, IntPtr indices, Int32 primcount) { throw new NotImplementedException(); }
@@ -881,30 +1241,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
[CLSCompliant(false)]
@@ -915,30 +1265,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
[CLSCompliant(false)]
@@ -949,30 +1289,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
[CLSCompliant(false)]
@@ -983,30 +1313,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Draw multiple instances of a set of elements
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, LineStripAdjacency, LinesAdjacency, TriangleStrip, TriangleFan, Triangles, TriangleStripAdjacency, TrianglesAdjacency and Patches are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be one of UnsignedByte, UnsignedShort, or UnsignedInt.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of instances of the specified range of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glDrawElementsInstancedANGLE")]
public static void DrawElementsInstanced(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices, Int32 primcount)
@@ -1014,36 +1334,60 @@ namespace OpenTK.Graphics.ES20
{ throw new NotImplementedException(); }
/// [requires: ANGLE_translated_shader_source]
+ ///
+ ///
+ /// [length: 1]
+ ///
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")]
[CLSCompliant(false)]
public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); }
/// [requires: ANGLE_translated_shader_source]
+ ///
+ ///
+ /// [length: 1]
+ ///
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")]
[CLSCompliant(false)]
public static void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); }
/// [requires: ANGLE_translated_shader_source]
+ ///
+ ///
+ /// [length: 1]
+ ///
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")]
[CLSCompliant(false)]
public static unsafe void GetTranslatedShaderSource(Int32 shader, Int32 bufsize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); }
/// [requires: ANGLE_translated_shader_source]
+ ///
+ ///
+ /// [length: 1]
+ ///
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")]
[CLSCompliant(false)]
public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); }
/// [requires: ANGLE_translated_shader_source]
+ ///
+ ///
+ /// [length: 1]
+ ///
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")]
[CLSCompliant(false)]
public static void GetTranslatedShaderSource(UInt32 shader, Int32 bufsize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder source) { throw new NotImplementedException(); }
/// [requires: ANGLE_translated_shader_source]
+ ///
+ ///
+ /// [length: 1]
+ ///
[Obsolete("Use out overload instead")]
[AutoGenerated(Category = "ANGLE_translated_shader_source", Version = "", EntryPoint = "glGetTranslatedShaderSourceANGLE")]
[CLSCompliant(false)]
@@ -1052,30 +1396,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_framebuffer_multisample]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")]
@@ -1084,30 +1418,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_framebuffer_multisample]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[AutoGenerated(Category = "ANGLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleANGLE")]
public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -1115,15 +1439,11 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Modify the rate at which generic vertex attributes advance during instanced rendering
///
- ///
- ///
+ ///
/// Specify the index of the generic vertex attribute.
- ///
///
- ///
- ///
+ ///
/// Specify the number of instances that will pass between updates of the generic attribute at slot index.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")]
[CLSCompliant(false)]
@@ -1132,15 +1452,11 @@ namespace OpenTK.Graphics.ES20
/// [requires: ANGLE_instanced_arrays]
/// Modify the rate at which generic vertex attributes advance during instanced rendering
///
- ///
- ///
+ ///
/// Specify the index of the generic vertex attribute.
- ///
///
- ///
- ///
+ ///
/// Specify the number of instances that will pass between updates of the generic attribute at slot index.
- ///
///
[AutoGenerated(Category = "ANGLE_instanced_arrays", Version = "", EntryPoint = "glVertexAttribDivisorANGLE")]
[CLSCompliant(false)]
@@ -1153,20 +1469,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Block and wait for a sync object to become signaled
///
- ///
- ///
+ ///
/// The sync object whose status to wait on.
- ///
///
- ///
- ///
- /// A bitfield controlling the command flushing behavior. flags may be GL_SYNC_FLUSH_COMMANDS_BIT.
- ///
+ ///
+ /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit.
///
- ///
- ///
+ ///
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
@@ -1176,20 +1486,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Block and wait for a sync object to become signaled
///
- ///
- ///
+ ///
/// The sync object whose status to wait on.
- ///
///
- ///
- ///
- /// A bitfield controlling the command flushing behavior. flags may be GL_SYNC_FLUSH_COMMANDS_BIT.
- ///
+ ///
+ /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit.
///
- ///
- ///
+ ///
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
@@ -1199,20 +1503,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Block and wait for a sync object to become signaled
///
- ///
- ///
+ ///
/// The sync object whose status to wait on.
- ///
///
- ///
- ///
- /// A bitfield controlling the command flushing behavior. flags may be GL_SYNC_FLUSH_COMMANDS_BIT.
- ///
+ ///
+ /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit.
///
- ///
- ///
+ ///
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
[CLSCompliant(false)]
@@ -1221,31 +1519,33 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Block and wait for a sync object to become signaled
///
- ///
- ///
+ ///
/// The sync object whose status to wait on.
- ///
///
- ///
- ///
- /// A bitfield controlling the command flushing behavior. flags may be GL_SYNC_FLUSH_COMMANDS_BIT.
- ///
+ ///
+ /// A bitfield controlling the command flushing behavior. flags may be SyncFlushCommandsBit.
///
- ///
- ///
+ ///
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
[CLSCompliant(false)]
public static OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.ClientWaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); }
/// [requires: APPLE_copy_texture_levels]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")]
[CLSCompliant(false)]
public static void CopyTextureLevel(Int32 destinationTexture, Int32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); }
/// [requires: APPLE_copy_texture_levels]
+ ///
+ ///
+ ///
+ ///
[AutoGenerated(Category = "APPLE_copy_texture_levels", Version = "", EntryPoint = "glCopyTextureLevelsAPPLE")]
[CLSCompliant(false)]
public static void CopyTextureLevel(UInt32 destinationTexture, UInt32 sourceTexture, Int32 sourceBaseLevel, Int32 sourceLevelCount) { throw new NotImplementedException(); }
@@ -1253,10 +1553,8 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Delete a sync object
///
- ///
- ///
+ ///
/// The sync object to be deleted.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glDeleteSyncAPPLE")]
public static void DeleteSync(IntPtr sync) { throw new NotImplementedException(); }
@@ -1264,15 +1562,11 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Create a new sync object and insert it into the GL command stream
///
- ///
- ///
- /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be GL_SYNC_GPU_COMMANDS_COMPLETE.
- ///
+ ///
+ /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete.
///
- ///
- ///
- /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero. flags is a placeholder for anticipated future extensions of fence sync object capabilities.
- ///
+ ///
+ /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")]
@@ -1281,59 +1575,69 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Create a new sync object and insert it into the GL command stream
///
- ///
- ///
- /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be GL_SYNC_GPU_COMMANDS_COMPLETE.
- ///
+ ///
+ /// Specifies the condition that must be met to set the sync object's state to signaled. condition must be SyncGpuCommandsComplete.
///
- ///
- ///
- /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero. flags is a placeholder for anticipated future extensions of fence sync object capabilities.
- ///
+ ///
+ /// Specifies a bitwise combination of flags controlling the behavior of the sync object. No flags are presently defined for this operation and flags must be zero.flags is a placeholder for anticipated future extensions of fence sync object capabilities.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glFenceSyncAPPLE")]
public static IntPtr FenceSync(OpenTK.Graphics.ES20.SyncCondition condition, OpenTK.Graphics.ES20.WaitSyncFlags flags) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static Int64 GetInteger64(OpenTK.Graphics.ES20.All pname) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static Int64 GetInteger64(OpenTK.Graphics.ES20.GetPName pname) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static unsafe void GetInteger64(OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64[] @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] out Int64 @params) { throw new NotImplementedException(); }
/// [requires: APPLE_sync]
+ ///
+ ///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetInteger64vAPPLE")]
[CLSCompliant(false)]
public static unsafe void GetInteger64(OpenTK.Graphics.ES20.GetPName pname, [OutAttribute] Int64* @params) { throw new NotImplementedException(); }
@@ -1341,30 +1645,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
@@ -1374,30 +1668,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
@@ -1407,30 +1691,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
@@ -1440,30 +1714,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
[CLSCompliant(false)]
@@ -1472,30 +1736,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
[CLSCompliant(false)]
@@ -1504,30 +1758,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Query the properties of a sync object
///
- ///
- ///
+ ///
/// Specifies the sync object whose properties to query.
- ///
///
- ///
- ///
+ ///
/// Specifies the parameter whose value to retrieve from the sync object specified in sync.
- ///
///
- ///
- ///
+ ///
/// Specifies the size of the buffer whose address is given in values.
- ///
///
- ///
- ///
+ ///
/// Specifies the address of an variable to receive the number of integers placed in values.
- ///
///
- /// [length: bufSize]
- ///
+ /// [length: bufSize]
/// Specifies the address of an array to receive the values of the queried parameter.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glGetSyncivAPPLE")]
[CLSCompliant(false)]
@@ -1536,10 +1780,8 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Determine if a name corresponds to a sync object
///
- ///
- ///
+ ///
/// Specifies a value that may be the name of a sync object.
- ///
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glIsSyncAPPLE")]
public static bool IsSync(IntPtr sync) { throw new NotImplementedException(); }
@@ -1547,30 +1789,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_framebuffer_multisample]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")]
@@ -1579,30 +1811,20 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_framebuffer_multisample]
/// Establish data storage, format, dimensions and sample count of a renderbuffer object's image
///
- ///
- ///
- /// Specifies a binding to which the target of the allocation and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies a binding to which the target of the allocation and must be Renderbuffer.
///
- ///
- ///
+ ///
/// Specifies the number of samples to be used for the renderbuffer object's storage.
- ///
///
- ///
- ///
+ ///
/// Specifies the internal format to use for the renderbuffer object's image.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the renderbuffer, in pixels.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the renderbuffer, in pixels.
- ///
///
[AutoGenerated(Category = "APPLE_framebuffer_multisample", Version = "", EntryPoint = "glRenderbufferStorageMultisampleAPPLE")]
public static void RenderbufferStorageMultisample(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.ES20.RenderbufferInternalFormat internalformat, Int32 width, Int32 height) { throw new NotImplementedException(); }
@@ -1614,20 +1836,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Instruct the GL server to block until the specified sync object becomes signaled
///
- ///
- ///
+ ///
/// Specifies the sync object whose status to wait on.
- ///
///
- ///
- ///
+ ///
/// A bitfield controlling the command flushing behavior. flags may be zero.
- ///
///
- ///
- ///
- /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
- ///
+ ///
+ /// Specifies the timeout that the server should wait before continuing. timeout must be TimeoutIgnored.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
@@ -1637,20 +1853,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Instruct the GL server to block until the specified sync object becomes signaled
///
- ///
- ///
+ ///
/// Specifies the sync object whose status to wait on.
- ///
///
- ///
- ///
+ ///
/// A bitfield controlling the command flushing behavior. flags may be zero.
- ///
///
- ///
- ///
- /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
- ///
+ ///
+ /// Specifies the timeout that the server should wait before continuing. timeout must be TimeoutIgnored.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
@@ -1660,20 +1870,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Instruct the GL server to block until the specified sync object becomes signaled
///
- ///
- ///
+ ///
/// Specifies the sync object whose status to wait on.
- ///
///
- ///
- ///
+ ///
/// A bitfield controlling the command flushing behavior. flags may be zero.
- ///
///
- ///
- ///
- /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
- ///
+ ///
+ /// Specifies the timeout that the server should wait before continuing. timeout must be TimeoutIgnored.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
[CLSCompliant(false)]
@@ -1682,20 +1886,14 @@ namespace OpenTK.Graphics.ES20
/// [requires: APPLE_sync]
/// Instruct the GL server to block until the specified sync object becomes signaled
///
- ///
- ///
+ ///
/// Specifies the sync object whose status to wait on.
- ///
///
- ///
- ///
+ ///
/// A bitfield controlling the command flushing behavior. flags may be zero.
- ///
///
- ///
- ///
- /// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
- ///
+ ///
+ /// Specifies the timeout that the server should wait before continuing. timeout must be TimeoutIgnored.
///
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
[CLSCompliant(false)]
@@ -1703,629 +1901,456 @@ namespace OpenTK.Graphics.ES20
}
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Select active texture unit
///
- ///
- ///
- /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of GL_TEXTUREi, where i ranges from zero to the value of GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS minus one. The initial value is GL_TEXTURE0.
- ///
+ ///
+ /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")]
public static void ActiveTexture(OpenTK.Graphics.ES20.All texture) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Select active texture unit
///
- ///
- ///
- /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 80. texture must be one of GL_TEXTUREi, where i ranges from zero to the value of GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS minus one. The initial value is GL_TEXTURE0.
- ///
+ ///
+ /// Specifies which texture unit to make active. The number of texture units is implementation dependent, but must be at least 8. texture must be one of Texture, where i ranges from 0 to (MaxCombinedTextureImageUnits - 1). The initial value is Texture0.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glActiveTexture")]
public static void ActiveTexture(OpenTK.Graphics.ES20.TextureUnit texture) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attaches a shader object to a program object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a shader object to a program object
///
- ///
- ///
+ ///
/// Specifies the program object to which a shader object will be attached.
- ///
///
- ///
- ///
+ ///
/// Specifies the shader object that is to be attached.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")]
[CLSCompliant(false)]
public static void AttachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attaches a shader object to a program object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a shader object to a program object
///
- ///
- ///
+ ///
/// Specifies the program object to which a shader object will be attached.
- ///
///
- ///
- ///
+ ///
/// Specifies the shader object that is to be attached.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glAttachShader")]
[CLSCompliant(false)]
public static void AttachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Associates a generic vertex attribute index with a named attribute variable
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Associate a generic vertex attribute index with a named attribute variable
///
- ///
- ///
+ ///
/// Specifies the handle of the program object in which the association is to be made.
- ///
///
- ///
- ///
+ ///
/// Specifies the index of the generic vertex attribute to be bound.
- ///
///
- ///
- ///
+ ///
/// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")]
[CLSCompliant(false)]
public static void BindAttribLocation(Int32 program, Int32 index, String name) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Associates a generic vertex attribute index with a named attribute variable
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Associate a generic vertex attribute index with a named attribute variable
///
- ///
- ///
+ ///
/// Specifies the handle of the program object in which the association is to be made.
- ///
///
- ///
- ///
+ ///
/// Specifies the index of the generic vertex attribute to be bound.
- ///
///
- ///
- ///
+ ///
/// Specifies a null terminated string containing the name of the vertex shader attribute variable to which index is to be bound.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindAttribLocation")]
[CLSCompliant(false)]
public static void BindAttribLocation(UInt32 program, UInt32 index, String name) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named buffer object
///
- ///
- ///
- /// Specifies the target to which the buffer object is bound. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target to which the buffer object is bound. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the name of a buffer object.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
[CLSCompliant(false)]
public static void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named buffer object
///
- ///
- ///
- /// Specifies the target to which the buffer object is bound. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target to which the buffer object is bound. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the name of a buffer object.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
[CLSCompliant(false)]
public static void BindBuffer(OpenTK.Graphics.ES20.All target, UInt32 buffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named buffer object
///
- ///
- ///
- /// Specifies the target to which the buffer object is bound. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target to which the buffer object is bound. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the name of a buffer object.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
[CLSCompliant(false)]
public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, Int32 buffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named buffer object
///
- ///
- ///
- /// Specifies the target to which the buffer object is bound. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target to which the buffer object is bound. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the name of a buffer object.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
[CLSCompliant(false)]
public static void BindBuffer(OpenTK.Graphics.ES20.BufferTarget target, UInt32 buffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a framebuffer to a framebuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target of the binding operation.
- ///
+ ///
+ /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the name of the framebuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a framebuffer object.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
[CLSCompliant(false)]
public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a framebuffer to a framebuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target of the binding operation.
- ///
+ ///
+ /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the name of the framebuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a framebuffer object.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
[CLSCompliant(false)]
public static void BindFramebuffer(OpenTK.Graphics.ES20.All target, UInt32 framebuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a framebuffer to a framebuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target of the binding operation.
- ///
+ ///
+ /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the name of the framebuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a framebuffer object.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
[CLSCompliant(false)]
public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, Int32 framebuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a framebuffer to a framebuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target of the binding operation.
- ///
+ ///
+ /// Specifies the target to which the framebuffer object is bound. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the name of the framebuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a framebuffer object.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
[CLSCompliant(false)]
public static void BindFramebuffer(OpenTK.Graphics.ES20.FramebufferTarget target, UInt32 framebuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a renderbuffer to a renderbuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named renderbuffer object
///
- ///
- ///
- /// Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of the renderbuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a renderbuffer object.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
[CLSCompliant(false)]
public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a renderbuffer to a renderbuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named renderbuffer object
///
- ///
- ///
- /// Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of the renderbuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a renderbuffer object.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
[CLSCompliant(false)]
public static void BindRenderbuffer(OpenTK.Graphics.ES20.All target, UInt32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a renderbuffer to a renderbuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named renderbuffer object
///
- ///
- ///
- /// Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of the renderbuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a renderbuffer object.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
[CLSCompliant(false)]
public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, Int32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Bind a renderbuffer to a renderbuffer target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Bind a named renderbuffer object
///
- ///
- ///
- /// Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the target to which the renderbuffer object is bound. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of the renderbuffer object to bind.
- ///
+ ///
+ /// Specifies the name of a renderbuffer object.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
[CLSCompliant(false)]
public static void BindRenderbuffer(OpenTK.Graphics.ES20.RenderbufferTarget target, UInt32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
[CLSCompliant(false)]
public static void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
[CLSCompliant(false)]
public static void BindTexture(OpenTK.Graphics.ES20.All target, UInt32 texture) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
[CLSCompliant(false)]
public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, Int32 texture) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Bind a named texture to a texturing target
///
- ///
- ///
- /// Specifies the target to which the texture is bound. Must be one of GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY, GL_TEXTURE_RECTANGLE, GL_TEXTURE_CUBE_MAP, GL_TEXTURE_CUBE_MAP_ARRAY, GL_TEXTURE_BUFFER, GL_TEXTURE_2D_MULTISAMPLE or GL_TEXTURE_2D_MULTISAMPLE_ARRAY.
- ///
+ ///
+ /// Specifies the target of the active texture unit to which the texture is bound. Must be either Texture2D or TextureCubeMap.
///
- ///
- ///
+ ///
/// Specifies the name of a texture.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
[CLSCompliant(false)]
public static void BindTexture(OpenTK.Graphics.ES20.TextureTarget target, UInt32 texture) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Set the blend color
///
- ///
- ///
- /// specify the components of GL_BLEND_COLOR
- ///
+ ///
+ /// specify the components of BlendColor
+ ///
+ ///
+ /// specify the components of BlendColor
+ ///
+ ///
+ /// specify the components of BlendColor
+ ///
+ ///
+ /// specify the components of BlendColor
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendColor")]
public static void BlendColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify the equation used for both the RGB blend equation and the Alpha blend equation
///
- ///
- ///
- /// for glBlendEquationi, specifies the index of the draw buffer for which to set the blend equation.
- ///
- ///
- ///
- ///
- /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")]
public static void BlendEquation(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify the equation used for both the RGB blend equation and the Alpha blend equation
///
- ///
- ///
- /// for glBlendEquationi, specifies the index of the draw buffer for which to set the blend equation.
- ///
- ///
- ///
- ///
- /// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies how source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquation")]
public static void BlendEquation(OpenTK.Graphics.ES20.BlendEquationMode mode) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Set the RGB blend equation and the alpha blend equation separately
///
- ///
- ///
- /// for glBlendEquationSeparatei, specifies the index of the draw buffer for which to set the blend equations.
- ///
+ ///
+ /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
- ///
- ///
- /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
- ///
- ///
- ///
- /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")]
public static void BlendEquationSeparate(OpenTK.Graphics.ES20.All modeRGB, OpenTK.Graphics.ES20.All modeAlpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Set the RGB blend equation and the alpha blend equation separately
///
- ///
- ///
- /// for glBlendEquationSeparatei, specifies the index of the draw buffer for which to set the blend equations.
- ///
+ ///
+ /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
- ///
- ///
- /// specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
- ///
- ///
- ///
- /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
- ///
+ ///
+ /// specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be FuncAdd, FuncSubtract, or FuncReverseSubtract.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendEquationSeparate")]
public static void BlendEquationSeparate(OpenTK.Graphics.ES20.BlendEquationMode modeRGB, OpenTK.Graphics.ES20.BlendEquationMode modeAlpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify pixel arithmetic
///
- ///
- ///
- /// For glBlendFunci, specifies the index of the draw buffer for which to set the blend function.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")]
public static void BlendFunc(OpenTK.Graphics.ES20.All sfactor, OpenTK.Graphics.ES20.All dfactor) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify pixel arithmetic
///
- ///
- ///
- /// For glBlendFunci, specifies the index of the draw buffer for which to set the blend function.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha source blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha source blending factors are computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, GL_DST_COLOR, GL_ONE_MINUS_DST_COLOR, GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA. GL_CONSTANT_COLOR, GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_ALPHA, and GL_ONE_MINUS_CONSTANT_ALPHA. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specifies how the red, green, blue, and alpha destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFunc")]
public static void BlendFunc(OpenTK.Graphics.ES20.BlendingFactorSrc sfactor, OpenTK.Graphics.ES20.BlendingFactorDest dfactor) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify pixel arithmetic for RGB and alpha components separately
///
- ///
- ///
- /// For glBlendFuncSeparatei, specifies the index of the draw buffer for which to set the blend functions.
- ///
+ ///
+ /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, and blue blending factors are computed. The initial value is GL_ONE.
- ///
+ ///
+ /// Specifies how the red, green, and blue destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
- ///
- ///
- /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One.
///
- ///
- ///
- /// Specified how the alpha source blending factor is computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")]
public static void BlendFuncSeparate(OpenTK.Graphics.ES20.All sfactorRGB, OpenTK.Graphics.ES20.All dfactorRGB, OpenTK.Graphics.ES20.All sfactorAlpha, OpenTK.Graphics.ES20.All dfactorAlpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify pixel arithmetic for RGB and alpha components separately
///
- ///
- ///
- /// For glBlendFuncSeparatei, specifies the index of the draw buffer for which to set the blend functions.
- ///
+ ///
+ /// Specifies how the red, green, and blue blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha, ConstantColor, OneMinusConstantColor, ConstantAlpha, OneMinusConstantAlpha, and SrcAlphaSaturate. The initial value is One.
///
- ///
- ///
- /// Specifies how the red, green, and blue blending factors are computed. The initial value is GL_ONE.
- ///
+ ///
+ /// Specifies how the red, green, and blue destination blending factors are computed. The following symbolic constants are accepted: Zero, One, SrcColor, OneMinusSrcColor, DstColor, OneMinusDstColor, SrcAlpha, OneMinusSrcAlpha, DstAlpha, OneMinusDstAlpha. ConstantColor, OneMinusConstantColor, ConstantAlpha, and OneMinusConstantAlpha. The initial value is Zero.
///
- ///
- ///
- /// Specifies how the red, green, and blue destination blending factors are computed. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specified how the alpha source blending factor is computed. The same symbolic constants are accepted as for srcRGB. The initial value is One.
///
- ///
- ///
- /// Specified how the alpha source blending factor is computed. The initial value is GL_ONE.
- ///
- ///
- ///
- ///
- /// Specified how the alpha destination blending factor is computed. The initial value is GL_ZERO.
- ///
+ ///
+ /// Specified how the alpha destination blending factor is computed. The same symbolic constants are accepted as for dstRGB. The initial value is Zero.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBlendFuncSeparate")]
public static void BlendFuncSeparate(OpenTK.Graphics.ES20.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.ES20.BlendingFactorDest dfactorRGB, OpenTK.Graphics.ES20.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.ES20.BlendingFactorDest dfactorAlpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
public static void BufferData(OpenTK.Graphics.ES20.All target, IntPtr size, IntPtr data, OpenTK.Graphics.ES20.All usage) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2334,28 +2359,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2364,28 +2381,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2394,28 +2403,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2423,81 +2424,57 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use BufferUsageHint overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.ES20.BufferUsage usage) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.ES20.BufferUsageHint usage) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use BufferUsageHint overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2506,28 +2483,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
[CLSCompliant(false)]
@@ -2535,28 +2504,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use BufferUsageHint overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2565,28 +2526,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
[CLSCompliant(false)]
@@ -2594,28 +2547,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use BufferUsageHint overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2624,28 +2569,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
[CLSCompliant(false)]
@@ -2653,28 +2590,20 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[Obsolete("Use BufferUsageHint overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
@@ -2682,83 +2611,59 @@ namespace OpenTK.Graphics.ES20
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates and initializes a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create and initialize a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the buffer object's new data store.
- ///
///
- /// [length: size]
- ///
- /// Specifies a pointer to data that will be copied into the data store for initialization, or NULL if no data is to be copied.
- ///
+ /// [length: size]
+ /// Specifies a pointer to data that will be copied into the data store for initialization, or Null if no data is to be copied.
///
- ///
- ///
- /// Specifies the expected usage pattern of the data store. The symbolic constant must be GL_STREAM_DRAW, GL_STREAM_READ, GL_STREAM_COPY, GL_STATIC_DRAW, GL_STATIC_READ, GL_STATIC_COPY, GL_DYNAMIC_DRAW, GL_DYNAMIC_READ, or GL_DYNAMIC_COPY.
- ///
+ ///
+ /// Specifies the expected usage pattern of the data store. The symbolic constant must be StreamDraw, StaticDraw, or DynamicDraw.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferData")]
public static void BufferData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.ES20.BufferUsageHint usage)
where T2 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
public static void BufferSubData(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
@@ -2767,28 +2672,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
@@ -2797,28 +2694,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
@@ -2827,28 +2716,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
@@ -2856,54 +2737,38 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
[CLSCompliant(false)]
@@ -2911,28 +2776,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
[CLSCompliant(false)]
@@ -2940,28 +2797,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
[CLSCompliant(false)]
@@ -2969,242 +2818,195 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Updates a subset of a buffer object's data store
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Update a subset of a buffer object's data store
///
- ///
- ///
- /// Specifies the target buffer object. The symbolic constant must be GL_ARRAY_BUFFER, GL_ATOMIC_COUNTER_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_DRAW_INDIRECT_BUFFER, GL_DISPATCH_INDIRECT_BUFFER, GL_ELEMENT_ARRAY_BUFFER, GL_PIXEL_PACK_BUFFER, GL_PIXEL_UNPACK_BUFFER, GL_QUERY_BUFFER, GL_SHADER_STORAGE_BUFFER, GL_TEXTURE_BUFFER, GL_TRANSFORM_FEEDBACK_BUFFER, or GL_UNIFORM_BUFFER.
- ///
+ ///
+ /// Specifies the target buffer object. The symbolic constant must be ArrayBuffer or ElementArrayBuffer.
///
- ///
- ///
+ ///
/// Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes.
- ///
///
- ///
- ///
+ ///
/// Specifies the size in bytes of the data store region being replaced.
- ///
///
- /// [length: size]
- ///
+ /// [length: size]
/// Specifies a pointer to the new data that will be copied into the data store.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBufferSubData")]
public static void BufferSubData(OpenTK.Graphics.ES20.BufferTarget target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data)
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Check the completeness status of a framebuffer
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Return the framebuffer completeness status of a framebuffer object
///
- ///
- ///
- /// Specify the target of the framebuffer completeness check.
- ///
+ ///
+ /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")]
public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Check the completeness status of a framebuffer
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Return the framebuffer completeness status of a framebuffer object
///
- ///
- ///
- /// Specify the target of the framebuffer completeness check.
- ///
+ ///
+ /// Specifies the target framebuffer object. The symbolic constant must be Framebuffer.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCheckFramebufferStatus")]
public static OpenTK.Graphics.ES20.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.ES20.FramebufferTarget target) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Clear buffers to preset values
///
- ///
- ///
- /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")]
public static void Clear(OpenTK.Graphics.ES20.All mask) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Clear buffers to preset values
///
- ///
- ///
- /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, and GL_STENCIL_BUFFER_BIT.
- ///
+ ///
+ /// Bitwise OR of masks that indicate the buffers to be cleared. The three masks are ColorBufferBit, DepthBufferBit, and StencilBufferBit.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClear")]
public static void Clear(OpenTK.Graphics.ES20.ClearBufferMask mask) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify clear values for the color buffers
///
- ///
- ///
+ ///
+ /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
+ ///
+ ///
+ /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
+ ///
+ ///
+ /// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
+ ///
+ ///
/// Specify the red, green, blue, and alpha values used when the color buffers are cleared. The initial values are all 0.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearColor")]
public static void ClearColor(Single red, Single green, Single blue, Single alpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify the clear value for the depth buffer
///
- ///
- ///
+ ///
/// Specifies the depth value used when the depth buffer is cleared. The initial value is 1.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearDepthf")]
public static void ClearDepth(Single d) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify the clear value for the stencil buffer
///
- ///
- ///
+ ///
/// Specifies the index used when the stencil buffer is cleared. The initial value is 0.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glClearStencil")]
public static void ClearStencil(Int32 s) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Enable and disable writing of frame buffer color components
///
- ///
- ///
- /// For glColorMaski, specifies the index of the draw buffer whose color mask to set.
- ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
///
- ///
- ///
- /// Specify whether red, green, blue, and alpha are to be written into the frame buffer. The initial values are all GL_TRUE, indicating that the color components are written.
- ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
+ ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
+ ///
+ ///
+ /// Specify whether red, green, blue, and alpha can or cannot be written into the frame buffer. The initial values are all True, indicating that the color components can be written.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glColorMask")]
public static void ColorMask(bool red, bool green, bool blue, bool alpha) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Compiles a shader object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Compile a shader object
///
- ///
- ///
+ ///
/// Specifies the shader object to be compiled.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")]
[CLSCompliant(false)]
public static void CompileShader(Int32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Compiles a shader object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Compile a shader object
///
- ///
- ///
+ ///
/// Specifies the shader object to be compiled.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompileShader")]
[CLSCompliant(false)]
public static void CompileShader(UInt32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
public static void CompressedTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3213,48 +3015,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3263,48 +3049,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3313,48 +3083,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3362,95 +3116,63 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3459,48 +3181,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3509,48 +3215,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3559,48 +3249,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
@@ -3608,94 +3282,62 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
[CLSCompliant(false)]
@@ -3703,48 +3345,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
[CLSCompliant(false)]
@@ -3752,48 +3378,32 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
[CLSCompliant(false)]
@@ -3801,153 +3411,101 @@ namespace OpenTK.Graphics.ES20
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture image in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_PROXY_TEXTURE_2D, GL_TEXTURE_1D_ARRAY, GL_PROXY_TEXTURE_1D_ARRAY, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_PROXY_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels wide.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Specifies the height of the texture image. All implementations support 2D texture and cube map texture images that are at least 16384 texels high.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
///
- ///
- ///
- /// This value must be 0.
- ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexImage2D")]
public static void CompressedTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.CompressedInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T7 data)
where T7 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.All format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -3956,53 +3514,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4011,53 +3551,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4066,53 +3588,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4120,105 +3624,69 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4227,53 +3695,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4282,53 +3732,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4337,53 +3769,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[Obsolete("Use TextureTarget2d and CompressedInternalFormat overloads instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
@@ -4391,104 +3805,68 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, IntPtr data) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
[CLSCompliant(false)]
@@ -4496,53 +3874,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
[CLSCompliant(false)]
@@ -4550,53 +3910,35 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
[CLSCompliant(false)]
@@ -4604,357 +3946,265 @@ namespace OpenTK.Graphics.ES20
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify a two-dimensional texture subimage in a compressed format
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the format of the compressed image data stored at address data.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of unsigned bytes of image data starting at the address specified by data.
- ///
///
- /// [length: imageSize]
- ///
+ /// [length: imageSize]
/// Specifies a pointer to the compressed image data in memory.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCompressedTexSubImage2D")]
public static void CompressedTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES20.PixelFormat format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data)
where T8 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Copy pixels into a 2D texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
- /// Specifies the internal format of the texture. Must be one of the following symbolic constants: GL_COMPRESSED_RED, GL_COMPRESSED_RG, GL_COMPRESSED_RGB, GL_COMPRESSED_RGBA. GL_COMPRESSED_SRGB, GL_COMPRESSED_SRGB_ALPHA. GL_DEPTH_COMPONENT, GL_DEPTH_COMPONENT16, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT32, GL_STENCIL_INDEX8, GL_RED, GL_RG, GL_RGB, GL_R3_G3_B2, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, GL_RGBA16, GL_SRGB, GL_SRGB8, GL_SRGB_ALPHA, or GL_SRGB8_ALPHA8.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, or Rgba.
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image.
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
///
- ///
- ///
- /// Specifies the height of the texture image.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Must be 0.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
+ ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")]
public static void CopyTexImage2D(OpenTK.Graphics.ES20.All target, Int32 level, OpenTK.Graphics.ES20.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Copy pixels into a 2D texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
- /// Specifies the internal format of the texture. Must be one of the following symbolic constants: GL_COMPRESSED_RED, GL_COMPRESSED_RG, GL_COMPRESSED_RGB, GL_COMPRESSED_RGBA. GL_COMPRESSED_SRGB, GL_COMPRESSED_SRGB_ALPHA. GL_DEPTH_COMPONENT, GL_DEPTH_COMPONENT16, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT32, GL_STENCIL_INDEX8, GL_RED, GL_RG, GL_RGB, GL_R3_G3_B2, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, GL_RGBA16, GL_SRGB, GL_SRGB8, GL_SRGB_ALPHA, or GL_SRGB8_ALPHA8.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, or Rgba.
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image.
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
///
- ///
- ///
- /// Specifies the height of the texture image.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Must be 0.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
+ ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
[Obsolete("Use TextureTarget2d and TextureCopyComponentCount overloads instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")]
public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, OpenTK.Graphics.ES20.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Copy pixels into a 2D texture image
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, or GL_TEXTURE_CUBE_MAP_NEGATIVE_Z.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
- /// Specifies the internal format of the texture. Must be one of the following symbolic constants: GL_COMPRESSED_RED, GL_COMPRESSED_RG, GL_COMPRESSED_RGB, GL_COMPRESSED_RGBA. GL_COMPRESSED_SRGB, GL_COMPRESSED_SRGB_ALPHA. GL_DEPTH_COMPONENT, GL_DEPTH_COMPONENT16, GL_DEPTH_COMPONENT24, GL_DEPTH_COMPONENT32, GL_STENCIL_INDEX8, GL_RED, GL_RG, GL_RGB, GL_R3_G3_B2, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, GL_RGBA16, GL_SRGB, GL_SRGB8, GL_SRGB_ALPHA, or GL_SRGB8_ALPHA8.
- ///
+ ///
+ /// Specifies the internal format of the texture. Must be one of the following symbolic constants: Alpha, Luminance, LuminanceAlpha, Rgb, or Rgba.
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
- /// Specifies the width of the texture image.
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
///
- ///
- ///
- /// Specifies the height of the texture image.
- ///
+ ///
+ /// Specifies the width of the texture image. All implementations support 2D texture images that are at least 64 texels wide and cube-mapped texture images that are at least 16 texels wide.
///
- ///
- ///
- /// Must be 0.
- ///
+ ///
+ /// Specifies the height of the texture image. All implementations support 2D texture images that are at least 64 texels high and cube-mapped texture images that are at least 16 texels high.
+ ///
+ ///
+ /// Specifies the width of the border. Must be 0.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexImage2D")]
public static void CopyTexImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, OpenTK.Graphics.ES20.TextureCopyComponentCount internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Copy a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
+ ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")]
public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Copy a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
+ ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")]
public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Copy a two-dimensional texture subimage
///
- ///
- ///
- /// Specifies the target texture. Must be GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP_POSITIVE_X, GL_TEXTURE_CUBE_MAP_NEGATIVE_X, GL_TEXTURE_CUBE_MAP_POSITIVE_Y, GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, GL_TEXTURE_CUBE_MAP_POSITIVE_Z, GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, or GL_TEXTURE_1D_ARRAY.
- ///
+ ///
+ /// Specifies the target texture of the active texture unit. Must be Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
///
- ///
- ///
+ ///
/// Specifies the level-of-detail number. Level 0 is the base image level. Level n is the nth mipmap reduction image.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the x direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specifies a texel offset in the y direction within the texture array.
- ///
///
- ///
- ///
+ ///
/// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
- ///
///
- ///
- ///
+ ///
+ /// Specify the window coordinates of the lower left corner of the rectangular region of pixels to be copied.
+ ///
+ ///
/// Specifies the width of the texture subimage.
- ///
///
- ///
- ///
+ ///
/// Specifies the height of the texture subimage.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCopyTexSubImage2D")]
public static void CopyTexSubImage2D(OpenTK.Graphics.ES20.TextureTarget2d target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates a program object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create a program object
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateProgram")]
public static Int32 CreateProgram() { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates a shader object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create a shader object
///
- ///
- ///
- /// Specifies the type of shader to be created. Must be one of GL_COMPUTE_SHADER, GL_VERTEX_SHADER, GL_TESS_CONTROL_SHADER, GL_TESS_EVALUATION_SHADER, GL_GEOMETRY_SHADER, or GL_FRAGMENT_SHADER.
- ///
+ ///
+ /// Specifies the type of shader to be created. Must be either VertexShader or FragmentShader.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")]
public static Int32 CreateShader(OpenTK.Graphics.ES20.All type) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Creates a shader object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Create a shader object
///
- ///
- ///
- /// Specifies the type of shader to be created. Must be one of GL_COMPUTE_SHADER, GL_VERTEX_SHADER, GL_TESS_CONTROL_SHADER, GL_TESS_EVALUATION_SHADER, GL_GEOMETRY_SHADER, or GL_FRAGMENT_SHADER.
- ///
+ ///
+ /// Specifies the type of shader to be created. Must be either VertexShader or FragmentShader.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCreateShader")]
public static Int32 CreateShader(OpenTK.Graphics.ES20.ShaderType type) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Specify whether front- or back-facing facets can be culled
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Specify whether front- or back-facing polygons can be culled
///
- ///
- ///
- /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants GL_FRONT, GL_BACK, and GL_FRONT_AND_BACK are accepted. The initial value is GL_BACK.
- ///
+ ///
+ /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")]
public static void CullFace(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Specify whether front- or back-facing facets can be culled
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Specify whether front- or back-facing polygons can be culled
///
- ///
- ///
- /// Specifies whether front- or back-facing facets are candidates for culling. Symbolic constants GL_FRONT, GL_BACK, and GL_FRONT_AND_BACK are accepted. The initial value is GL_BACK.
- ///
+ ///
+ /// Specifies whether front- or back-facing polygons are candidates for culling. Symbolic constants Front, Back, and FrontAndBack are accepted. The initial value is Back.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glCullFace")]
public static void CullFace(OpenTK.Graphics.ES20.CullFaceMode mode) { throw new NotImplementedException(); }
@@ -4962,15 +4212,11 @@ namespace OpenTK.Graphics.ES20
///
/// Specify a callback to receive debugging messages from the GL
///
- ///
- ///
+ ///
/// The address of a callback function that will be called when a debug message is generated.
- ///
///
- ///
- ///
+ ///
/// A user supplied pointer that will be passed on each invocation of callback.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")]
public static void DebugMessageCallback(DebugProc callback, IntPtr userParam) { throw new NotImplementedException(); }
@@ -4978,15 +4224,11 @@ namespace OpenTK.Graphics.ES20
///
/// Specify a callback to receive debugging messages from the GL
///
- ///
- ///
+ ///
/// The address of a callback function that will be called when a debug message is generated.
- ///
///
- ///
- ///
+ ///
/// A user supplied pointer that will be passed on each invocation of callback.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")]
[CLSCompliant(false)]
@@ -4997,15 +4239,11 @@ namespace OpenTK.Graphics.ES20
///
/// Specify a callback to receive debugging messages from the GL
///
- ///
- ///
+ ///
/// The address of a callback function that will be called when a debug message is generated.
- ///
///
- ///
- ///
+ ///
/// A user supplied pointer that will be passed on each invocation of callback.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")]
[CLSCompliant(false)]
@@ -5016,15 +4254,11 @@ namespace OpenTK.Graphics.ES20
///
/// Specify a callback to receive debugging messages from the GL
///
- ///
- ///
+ ///
/// The address of a callback function that will be called when a debug message is generated.
- ///
///
- ///
- ///
+ ///
/// A user supplied pointer that will be passed on each invocation of callback.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")]
[CLSCompliant(false)]
@@ -5035,15 +4269,11 @@ namespace OpenTK.Graphics.ES20
///
/// Specify a callback to receive debugging messages from the GL
///
- ///
- ///
+ ///
/// The address of a callback function that will be called when a debug message is generated.
- ///
///
- ///
- ///
+ ///
/// A user supplied pointer that will be passed on each invocation of callback.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageCallback")]
public static void DebugMessageCallback(DebugProc callback, [InAttribute, OutAttribute] ref T1 userParam)
@@ -5053,35 +4283,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
@@ -5091,35 +4309,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
@@ -5129,35 +4335,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
@@ -5167,35 +4361,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
@@ -5205,35 +4387,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
@@ -5243,35 +4413,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
@@ -5281,35 +4439,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
[CLSCompliant(false)]
@@ -5318,35 +4464,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
[CLSCompliant(false)]
@@ -5355,35 +4489,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
[CLSCompliant(false)]
@@ -5392,35 +4514,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
[CLSCompliant(false)]
@@ -5429,35 +4539,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
[CLSCompliant(false)]
@@ -5466,35 +4564,23 @@ namespace OpenTK.Graphics.ES20
///
/// Control the reporting of debug messages in a debug context
///
- ///
- ///
+ ///
/// The source of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The type of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The severity of debug messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// The length of the array ids.
- ///
///
- /// [length: count]
- ///
+ /// [length: count]
/// The address of an array of unsigned integers contianing the ids of the messages to enable or disable.
- ///
///
- ///
- ///
+ ///
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
[CLSCompliant(false)]
@@ -5503,35 +4589,23 @@ namespace OpenTK.Graphics.ES20
///
/// Inject an application-supplied message into the debug message queue
///
- ///
- ///
+ ///
/// The source of the debug message to insert.
- ///
///
- ///
- ///
+ ///
/// The type of the debug message insert.
- ///
///
- ///
- ///
+ ///
/// The user-supplied identifier of the message to insert.
- ///
///
- ///
- ///
+ ///
/// The severity of the debug messages to insert.
- ///
///
- ///
- ///
+ ///
/// The length string contained in the character array whose address is given by message.
- ///
///
- ///
- ///
+ /// [length: buf,length]
/// The address of a character array containing the message to insert.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
@@ -5541,35 +4615,23 @@ namespace OpenTK.Graphics.ES20
///
/// Inject an application-supplied message into the debug message queue
///
- ///
- ///
+ ///
/// The source of the debug message to insert.
- ///
///
- ///
- ///
+ ///
/// The type of the debug message insert.
- ///
///
- ///
- ///
+ ///
/// The user-supplied identifier of the message to insert.
- ///
///
- ///
- ///
+ ///
/// The severity of the debug messages to insert.
- ///
///
- ///
- ///
+ ///
/// The length string contained in the character array whose address is given by message.
- ///
///
- ///
- ///
+ /// [length: buf,length]
/// The address of a character array containing the message to insert.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
@@ -5579,35 +4641,23 @@ namespace OpenTK.Graphics.ES20
///
/// Inject an application-supplied message into the debug message queue
///
- ///
- ///
+ ///
/// The source of the debug message to insert.
- ///
///
- ///
- ///
+ ///
/// The type of the debug message insert.
- ///
///
- ///
- ///
+ ///
/// The user-supplied identifier of the message to insert.
- ///
///
- ///
- ///
+ ///
/// The severity of the debug messages to insert.
- ///
///
- ///
- ///
+ ///
/// The length string contained in the character array whose address is given by message.
- ///
///
- ///
- ///
+ /// [length: buf,length]
/// The address of a character array containing the message to insert.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
[CLSCompliant(false)]
@@ -5616,849 +4666,629 @@ namespace OpenTK.Graphics.ES20
///
/// Inject an application-supplied message into the debug message queue
///
- ///
- ///
+ ///
/// The source of the debug message to insert.
- ///
///
- ///
- ///
+ ///
/// The type of the debug message insert.
- ///
///
- ///
- ///
+ ///
/// The user-supplied identifier of the message to insert.
- ///
///
- ///
- ///
+ ///
/// The severity of the debug messages to insert.
- ///
///
- ///
- ///
+ ///
/// The length string contained in the character array whose address is given by message.
- ///
///
- ///
- ///
+ /// [length: buf,length]
/// The address of a character array containing the message to insert.
- ///
///
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
[CLSCompliant(false)]
public static void DebugMessageInsert(OpenTK.Graphics.ES20.DebugSourceExternal source, OpenTK.Graphics.ES20.DebugType type, UInt32 id, OpenTK.Graphics.ES20.DebugSeverity severity, Int32 length, String buf) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
- /// Specifies the number of buffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static void DeleteBuffer(Int32 buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
- /// Specifies the number of buffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static void DeleteBuffer(UInt32 buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static void DeleteBuffers(Int32 n, Int32[] buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static void DeleteBuffers(Int32 n, ref Int32 buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static unsafe void DeleteBuffers(Int32 n, Int32* buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static void DeleteBuffers(Int32 n, UInt32[] buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static void DeleteBuffers(Int32 n, ref UInt32 buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named buffer objects
///
- ///
- ///
+ ///
/// Specifies the number of buffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of buffer objects to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteBuffers")]
[CLSCompliant(false)]
public static unsafe void DeleteBuffers(Int32 n, UInt32* buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
- /// Specifies the number of framebuffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static void DeleteFramebuffer(Int32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
- /// Specifies the number of framebuffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static void DeleteFramebuffer(UInt32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, Int32[] framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, ref Int32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, UInt32[] framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete framebuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named framebuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of framebuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n framebuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of framebuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteFramebuffers")]
[CLSCompliant(false)]
public static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Deletes a program object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete a program object
///
- ///
- ///
+ ///
/// Specifies the program object to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")]
[CLSCompliant(false)]
public static void DeleteProgram(Int32 program) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Deletes a program object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete a program object
///
- ///
- ///
+ ///
/// Specifies the program object to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteProgram")]
[CLSCompliant(false)]
public static void DeleteProgram(UInt32 program) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
- /// Specifies the number of renderbuffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static void DeleteRenderbuffer(Int32 renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
- /// Specifies the number of renderbuffer objects to be deleted.
- ///
- ///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static void DeleteRenderbuffer(UInt32 renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Delete renderbuffer objects
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete named renderbuffer objects
///
- ///
- ///
+ ///
/// Specifies the number of renderbuffer objects to be deleted.
- ///
///
- /// [length: n]
- ///
- /// A pointer to an array containing n renderbuffer objects to be deleted.
- ///
+ /// [length: n]
+ /// Specifies an array of renderbuffer objects to be deleted.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteRenderbuffers")]
[CLSCompliant(false)]
public static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Deletes a shader object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete a shader object
///
- ///
- ///
+ ///
/// Specifies the shader object to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")]
[CLSCompliant(false)]
public static void DeleteShader(Int32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Deletes a shader object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Delete a shader object
///
- ///
- ///
+ ///
/// Specifies the shader object to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteShader")]
[CLSCompliant(false)]
public static void DeleteShader(UInt32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
- /// Specifies the number of textures to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static void DeleteTexture(Int32 textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
- /// Specifies the number of textures to be deleted.
- ///
- ///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static void DeleteTexture(UInt32 textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static void DeleteTextures(Int32 n, Int32[] textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static void DeleteTextures(Int32 n, ref Int32 textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static unsafe void DeleteTextures(Int32 n, Int32* textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static void DeleteTextures(Int32 n, UInt32[] textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static void DeleteTextures(Int32 n, ref UInt32 textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Delete named textures
///
- ///
- ///
+ ///
/// Specifies the number of textures to be deleted.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array of textures to be deleted.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDeleteTextures")]
[CLSCompliant(false)]
public static unsafe void DeleteTextures(Int32 n, UInt32* textures) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify the value used for depth buffer comparisons
///
- ///
- ///
- /// Specifies the depth comparison function. Symbolic constants GL_NEVER, GL_LESS, GL_EQUAL, GL_LEQUAL, GL_GREATER, GL_NOTEQUAL, GL_GEQUAL, and GL_ALWAYS are accepted. The initial value is GL_LESS.
- ///
+ ///
+ /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")]
public static void DepthFunc(OpenTK.Graphics.ES20.All func) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify the value used for depth buffer comparisons
///
- ///
- ///
- /// Specifies the depth comparison function. Symbolic constants GL_NEVER, GL_LESS, GL_EQUAL, GL_LEQUAL, GL_GREATER, GL_NOTEQUAL, GL_GEQUAL, and GL_ALWAYS are accepted. The initial value is GL_LESS.
- ///
+ ///
+ /// Specifies the depth comparison function. Symbolic constants Never, Less, Equal, Lequal, Greater, Notequal, Gequal, and Always are accepted. The initial value is Less.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthFunc")]
public static void DepthFunc(OpenTK.Graphics.ES20.DepthFunction func) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Enable or disable writing into the depth buffer
///
- ///
- ///
- /// Specifies whether the depth buffer is enabled for writing. If flag is GL_FALSE, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled.
- ///
+ ///
+ /// Specifies whether the depth buffer is enabled for writing. If flag is False, depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer writing is enabled.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthMask")]
public static void DepthMask(bool flag) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Specify mapping of depth values from normalized device coordinates to window coordinates
///
- ///
- ///
+ ///
/// Specifies the mapping of the near clipping plane to window coordinates. The initial value is 0.
- ///
///
- ///
- ///
+ ///
/// Specifies the mapping of the far clipping plane to window coordinates. The initial value is 1.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDepthRangef")]
public static void DepthRange(Single n, Single f) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Detaches a shader object from a program object to which it is attached
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Detach a shader object from a program object
///
- ///
- ///
+ ///
/// Specifies the program object from which to detach the shader object.
- ///
///
- ///
- ///
+ ///
/// Specifies the shader object to be detached.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")]
[CLSCompliant(false)]
public static void DetachShader(Int32 program, Int32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Detaches a shader object from a program object to which it is attached
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Detach a shader object from a program object
///
- ///
- ///
+ ///
/// Specifies the program object from which to detach the shader object.
- ///
///
- ///
- ///
+ ///
/// Specifies the shader object to be detached.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDetachShader")]
[CLSCompliant(false)]
public static void DetachShader(UInt32 program, UInt32 shader) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")]
public static void Disable(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisable")]
public static void Disable(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")]
[CLSCompliant(false)]
public static void DisableVertexAttribArray(Int32 index) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDisableVertexAttribArray")]
[CLSCompliant(false)]
public static void DisableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")]
public static void DrawArrays(OpenTK.Graphics.ES20.All mode, Int32 first, Int32 count) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")]
public static void DrawArrays(OpenTK.Graphics.ES20.BeginMode mode, Int32 first, Int32 count) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the starting index in the enabled arrays.
- ///
///
- ///
- ///
+ ///
/// Specifies the number of indices to be rendered.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawArrays")]
public static void DrawArrays(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 first, Int32 count) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
public static void DrawElements(OpenTK.Graphics.ES20.All mode, Int32 count, OpenTK.Graphics.ES20.All type, IntPtr indices) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6467,28 +5297,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6497,28 +5319,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6527,28 +5341,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6556,55 +5362,39 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
public static void DrawElements(OpenTK.Graphics.ES20.BeginMode mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6613,28 +5403,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6643,28 +5425,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6673,28 +5447,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[Obsolete("Use PrimitiveType overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
@@ -6702,54 +5468,38 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, IntPtr indices) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
[CLSCompliant(false)]
@@ -6757,28 +5507,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
[CLSCompliant(false)]
@@ -6786,28 +5528,20 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
[CLSCompliant(false)]
@@ -6815,1887 +5549,1503 @@ namespace OpenTK.Graphics.ES20
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Render primitives from array data
///
- ///
- ///
- /// Specifies what kind of primitives to render. Symbolic constants GL_POINTS, GL_LINE_STRIP, GL_LINE_LOOP, GL_LINES, GL_LINE_STRIP_ADJACENCY, GL_LINES_ADJACENCY, GL_TRIANGLE_STRIP, GL_TRIANGLE_FAN, GL_TRIANGLES, GL_TRIANGLE_STRIP_ADJACENCY, GL_TRIANGLES_ADJACENCY and GL_PATCHES are accepted.
- ///
+ ///
+ /// Specifies what kind of primitives to render. Symbolic constants Points, LineStrip, LineLoop, Lines, TriangleStrip, TriangleFan, and Triangles are accepted.
///
- ///
- ///
+ ///
/// Specifies the number of elements to be rendered.
- ///
///
- ///
- ///
- /// Specifies the type of the values in indices. Must be one of GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, or GL_UNSIGNED_INT.
- ///
+ ///
+ /// Specifies the type of the values in indices. Must be UnsignedByte or UnsignedShort.
///
- /// [length: count,type]
- ///
+ /// [length: count,type]
/// Specifies a pointer to the location where the indices are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glDrawElements")]
public static void DrawElements(OpenTK.Graphics.ES20.PrimitiveType mode, Int32 count, OpenTK.Graphics.ES20.DrawElementsType type, [InAttribute, OutAttribute] ref T3 indices)
where T3 : struct
{ throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Enable or disable server-side GL capabilities
///
- ///
- ///
+ ///
/// Specifies a symbolic constant indicating a GL capability.
- ///
- ///
- ///
- ///
- /// Specifies the index of the switch to disable (for glEnablei and glDisablei only).
- ///
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")]
public static void Enable(OpenTK.Graphics.ES20.All cap) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Enable or disable server-side GL capabilities
///
- ///
- ///
+ ///
/// Specifies a symbolic constant indicating a GL capability.
- ///
- ///
- ///
- ///
- /// Specifies the index of the switch to disable (for glEnablei and glDisablei only).
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnable")]
public static void Enable(OpenTK.Graphics.ES20.EnableCap cap) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Enable or disable a generic vertex attribute array
///
- ///
- ///
+ ///
/// Specifies the index of the generic vertex attribute to be enabled or disabled.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")]
[CLSCompliant(false)]
public static void EnableVertexAttribArray(Int32 index) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Enable or disable a generic vertex attribute array
///
- ///
- ///
+ ///
/// Specifies the index of the generic vertex attribute to be enabled or disabled.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glEnableVertexAttribArray")]
[CLSCompliant(false)]
public static void EnableVertexAttribArray(UInt32 index) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Block until all GL execution is complete
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFinish")]
public static void Finish() { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Force execution of GL commands in finite time
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFlush")]
public static void Flush() { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[Obsolete("Use FramebufferAttachment overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, Int32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Attach a renderbuffer as a logical buffer to the currently bound framebuffer object
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a renderbuffer object to a framebuffer object
///
- ///
- ///
- /// Specifies the framebuffer target. target must be GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER, or GL_FRAMEBUFFER. GL_FRAMEBUFFER is equivalent to GL_DRAW_FRAMEBUFFER.
- ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
///
- ///
- ///
- /// Specifies the attachment point of the framebuffer.
- ///
+ ///
+ /// Specifies the attachment point to which renderbuffer should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
///
- ///
- ///
- /// Specifies the renderbuffer target and must be GL_RENDERBUFFER.
- ///
+ ///
+ /// Specifies the renderbuffer target. The symbolic constant must be Renderbuffer.
///
- ///
- ///
- /// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
- ///
+ ///
+ /// Specifies the renderbuffer object that is to be attached.
///
[Obsolete("Use FramebufferAttachment overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
[CLSCompliant(false)]
public static void FramebufferRenderbuffer(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.TextureTarget2d textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, Int32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Attach a texture image to a framebuffer object
+ ///
+ ///
+ /// Specifies the framebuffer target. The symbolic constant must be Framebuffer.
+ ///
+ ///
+ /// Specifies the attachment point to which an image from texture should be attached. Must be one of the following symbolic constants: ColorAttachment0, DepthAttachment, or StencilAttachment.
+ ///
+ ///
+ /// Specifies the texture target. Must be one of the following symbolic constants: Texture2D, TextureCubeMapPositiveX, TextureCubeMapNegativeX, TextureCubeMapPositiveY, TextureCubeMapNegativeY, TextureCubeMapPositiveZ, or TextureCubeMapNegativeZ.
+ ///
+ ///
+ /// Specifies the texture object whose image is to be attached.
+ ///
+ ///
+ /// Specifies the mipmap level of the texture image to be attached, which must be 0.
+ ///
[Obsolete("Use TextureTarget2d overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
[CLSCompliant(false)]
public static void FramebufferTexture2D(OpenTK.Graphics.ES20.FramebufferTarget target, OpenTK.Graphics.ES20.FramebufferSlot attachment, OpenTK.Graphics.ES20.TextureTarget textarget, UInt32 texture, Int32 level) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Define front- and back-facing polygons
///
- ///
- ///
- /// Specifies the orientation of front-facing polygons. GL_CW and GL_CCW are accepted. The initial value is GL_CCW.
- ///
+ ///
+ /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")]
public static void FrontFace(OpenTK.Graphics.ES20.All mode) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Define front- and back-facing polygons
///
- ///
- ///
- /// Specifies the orientation of front-facing polygons. GL_CW and GL_CCW are accepted. The initial value is GL_CCW.
- ///
+ ///
+ /// Specifies the orientation of front-facing polygons. Cw and Ccw are accepted. The initial value is Ccw.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFrontFace")]
public static void FrontFace(OpenTK.Graphics.ES20.FrontFaceDirection mode) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
- /// Specifies the number of buffer object names to be generated.
- ///
- ///
- /// [length: n]
- ///
- /// Specifies an array in which the generated buffer object names are stored.
- ///
- ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static Int32 GenBuffer() { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static void GenBuffers(Int32 n, [OutAttribute] Int32[] buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static void GenBuffers(Int32 n, [OutAttribute] out Int32 buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static unsafe void GenBuffers(Int32 n, [OutAttribute] Int32* buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static void GenBuffers(Int32 n, [OutAttribute] UInt32[] buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static void GenBuffers(Int32 n, [OutAttribute] out UInt32 buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate buffer object names
///
- ///
- ///
+ ///
/// Specifies the number of buffer object names to be generated.
- ///
///
- /// [length: n]
- ///
+ /// [length: n]
/// Specifies an array in which the generated buffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenBuffers")]
[CLSCompliant(false)]
public static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Generate mipmaps for a specified texture target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Generate a complete set of mipmaps for a texture object
///
- ///
- ///
- /// Specifies the target to which the texture whose mimaps to generate is bound. target must be GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap.
///
[Obsolete("Use strongly-typed overload instead")]
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")]
public static void GenerateMipmap(OpenTK.Graphics.ES20.All target) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
- /// Generate mipmaps for a specified texture target
+ /// [requires: v2.0 or ES_VERSION_2_0]
+ /// Generate a complete set of mipmaps for a texture object
///
- ///
- ///
- /// Specifies the target to which the texture whose mimaps to generate is bound. target must be GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D_ARRAY or GL_TEXTURE_CUBE_MAP.
- ///
+ ///
+ /// Specifies the texture target of the active texture unit to which the texture object is bound whose mipmaps will be generated. Must be one of the following symbolic constants: Texture2D or TextureCubeMap.
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenerateMipmap")]
public static void GenerateMipmap(OpenTK.Graphics.ES20.TextureTarget target) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
- ///
- ///
- ///
- /// Specifies an array in which the generated framebuffer object names are stored.
- ///
- ///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")]
[CLSCompliant(false)]
public static Int32 GenFramebuffer() { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")]
[CLSCompliant(false)]
public static void GenFramebuffers(Int32 n, [OutAttribute] Int32[] framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")]
[CLSCompliant(false)]
public static void GenFramebuffers(Int32 n, [OutAttribute] out Int32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")]
[CLSCompliant(false)]
public static unsafe void GenFramebuffers(Int32 n, [OutAttribute] Int32* framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")]
[CLSCompliant(false)]
public static void GenFramebuffers(Int32 n, [OutAttribute] UInt32[] framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ /// [length: n]
/// Specifies an array in which the generated framebuffer object names are stored.
- ///
///
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGenFramebuffers")]
[CLSCompliant(false)]
public static void GenFramebuffers(Int32 n, [OutAttribute] out UInt32 framebuffers) { throw new NotImplementedException(); }
- /// [requires: v2.0 and ES_VERSION_2_0]
+ /// [requires: v2.0 or ES_VERSION_2_0]
/// Generate framebuffer object names
///
- ///
- ///
- /// Specifies the number of framebuffer object names to generate.
- ///
+ ///
+ /// Specifies the number of framebuffer object names to be generated.
///
- ///
- ///
+ ///