Regenerated using latest generator.

This commit is contained in:
Stefanos A. 2013-10-27 01:31:20 +02:00
parent 51f52d7fc4
commit f57b53b677
4 changed files with 91 additions and 61 deletions

View file

@ -21695,13 +21695,13 @@ namespace OpenTK.Graphics.OpenGL
/// </param>
[AutoGenerated(Category = "ARB_geometry_shader4", Version = "3.0", EntryPoint = "glProgramParameteriARB")]
public static
void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value)
void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value);
Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterPName)pname, (Int32)value);
#if DEBUG
}
#endif
@ -21729,13 +21729,13 @@ namespace OpenTK.Graphics.OpenGL
[System.CLSCompliant(false)]
[AutoGenerated(Category = "ARB_geometry_shader4", Version = "3.0", EntryPoint = "glProgramParameteriARB")]
public static
void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value)
void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value);
Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterPName)pname, (Int32)value);
#if DEBUG
}
#endif
@ -150080,13 +150080,13 @@ namespace OpenTK.Graphics.OpenGL
/// </param>
[AutoGenerated(Category = "EXT_geometry_shader4", Version = "2.0", EntryPoint = "glProgramParameteriEXT")]
public static
void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value)
void ProgramParameter(Int32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value);
Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterPName)pname, (Int32)value);
#if DEBUG
}
#endif
@ -150114,13 +150114,13 @@ namespace OpenTK.Graphics.OpenGL
[System.CLSCompliant(false)]
[AutoGenerated(Category = "EXT_geometry_shader4", Version = "2.0", EntryPoint = "glProgramParameteriEXT")]
public static
void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value)
void ProgramParameter(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value);
Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterPName)pname, (Int32)value);
#if DEBUG
}
#endif
@ -172356,37 +172356,6 @@ namespace OpenTK.Graphics.OpenGL
#endif
}
/// <summary>[requires: NVX_conditional_render]</summary>
[AutoGenerated(Category = "NVX_conditional_render", Version = "4.3", EntryPoint = "glBeginConditionalRenderNVX")]
public static
void BeginConditionalRenderN(Int32 id)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glBeginConditionalRenderNVX((UInt32)id);
#if DEBUG
}
#endif
}
/// <summary>[requires: NVX_conditional_render]</summary>
[System.CLSCompliant(false)]
[AutoGenerated(Category = "NVX_conditional_render", Version = "4.3", EntryPoint = "glBeginConditionalRenderNVX")]
public static
void BeginConditionalRenderN(UInt32 id)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glBeginConditionalRenderNVX((UInt32)id);
#if DEBUG
}
#endif
}
/// <summary>[requires: NV_occlusion_query]</summary>
[AutoGenerated(Category = "NV_occlusion_query", Version = "1.2", EntryPoint = "glBeginOcclusionQueryNV")]
public static
@ -175820,21 +175789,6 @@ namespace OpenTK.Graphics.OpenGL
#endif
}
/// <summary>[requires: NVX_conditional_render]</summary>
[AutoGenerated(Category = "NVX_conditional_render", Version = "4.3", EntryPoint = "glEndConditionalRenderNVX")]
public static
void EndConditionalRenderN()
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glEndConditionalRenderNVX();
#if DEBUG
}
#endif
}
/// <summary>[requires: NV_occlusion_query]</summary>
[AutoGenerated(Category = "NV_occlusion_query", Version = "1.2", EntryPoint = "glEndOcclusionQueryNV")]
public static
@ -209884,6 +209838,82 @@ namespace OpenTK.Graphics.OpenGL
}
public static partial class Nvx
{
/// <summary>[requires: NVX_conditional_render]
/// Start conditional rendering
/// </summary>
/// <param name="id">
/// <para>
/// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded.
/// </para>
/// </param>
/// <param name="mode">
/// <para>
/// Specifies how glBeginConditionalRender interprets the results of the occlusion query.
/// </para>
/// </param>
[AutoGenerated(Category = "NVX_conditional_render", Version = "4.3", EntryPoint = "glBeginConditionalRenderNVX")]
public static
void BeginConditionalRender(Int32 id)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glBeginConditionalRenderNVX((UInt32)id);
#if DEBUG
}
#endif
}
/// <summary>[requires: NVX_conditional_render]
/// Start conditional rendering
/// </summary>
/// <param name="id">
/// <para>
/// Specifies the name of an occlusion query object whose results are used to determine if the rendering commands are discarded.
/// </para>
/// </param>
/// <param name="mode">
/// <para>
/// Specifies how glBeginConditionalRender interprets the results of the occlusion query.
/// </para>
/// </param>
[System.CLSCompliant(false)]
[AutoGenerated(Category = "NVX_conditional_render", Version = "4.3", EntryPoint = "glBeginConditionalRenderNVX")]
public static
void BeginConditionalRender(UInt32 id)
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glBeginConditionalRenderNVX((UInt32)id);
#if DEBUG
}
#endif
}
/// <summary>[requires: NVX_conditional_render]</summary>
[AutoGenerated(Category = "NVX_conditional_render", Version = "4.3", EntryPoint = "glEndConditionalRenderNVX")]
public static
void EndConditionalRender()
{
#if DEBUG
using (new ErrorHelper(GraphicsContext.CurrentContext))
{
#endif
Delegates.glEndConditionalRenderNVX();
#if DEBUG
}
#endif
}
}
public static partial class Oes
{
/// <summary>[requires: OES_fixed_point]</summary>

View file

@ -4535,10 +4535,10 @@ namespace OpenTK.Graphics.OpenGL
internal extern static void ProgramParameteri(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameteriARB", ExactSpelling = true)]
internal extern static void ProgramParameteriARB(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value);
internal extern static void ProgramParameteriARB(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameteriEXT", ExactSpelling = true)]
internal extern static void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value);
internal extern static void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value);
[System.Security.SuppressUnmanagedCodeSecurity()]
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameters4dvNV", ExactSpelling = true)]
internal extern static unsafe void ProgramParameters4dvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, Double* v);

View file

@ -4533,10 +4533,10 @@ namespace OpenTK.Graphics.OpenGL
internal delegate void ProgramParameteri(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value);
internal static ProgramParameteri glProgramParameteri;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ProgramParameteriARB(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value);
internal delegate void ProgramParameteriARB(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value);
internal static ProgramParameteriARB glProgramParameteriARB;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, Int32 value);
internal delegate void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameterPName pname, Int32 value);
internal static ProgramParameteriEXT glProgramParameteriEXT;
[System.Security.SuppressUnmanagedCodeSecurity()]
internal unsafe delegate void ProgramParameters4dvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Int32 count, Double* v);

View file

@ -27416,7 +27416,7 @@ namespace OpenTK.Graphics.OpenGL
}
/// <summary>
/// Used in GL.Arb.GetProgram, GL.Arb.GetProgramString, GL.Arb.ProgramParameter, GL.Ext.ProgramParameter, GL.NV.GetProgramParameter, GL.NV.GetTrackMatrix
/// Used in GL.Arb.GetProgram, GL.Arb.GetProgramString, GL.NV.GetProgramParameter, GL.NV.GetTrackMatrix
/// </summary>
public enum AssemblyProgramParameterArb : int
{
@ -46063,7 +46063,7 @@ namespace OpenTK.Graphics.OpenGL
/// <summary>
/// Not used directly.
/// </summary>
public enum NvXConditionalRender : int
public enum NvxConditionalRender : int
{
}
@ -49118,7 +49118,7 @@ namespace OpenTK.Graphics.OpenGL
}
/// <summary>
/// Used in GL.ProgramParameter
/// Used in GL.Arb.ProgramParameter, GL.ProgramParameter, GL.Ext.ProgramParameter
/// </summary>
public enum ProgramParameterPName : int
{