Enum: EXT Stencil Wrap (Version14) [done!]

http://www.opengl.org/registry/specs/EXT/stencil_wrap.txt

       // add to Enum: StencilOp
        IncrWrap = ( (int) 0x8507 ),
        DecrWrap = ( (int) 0x8508 ),


Comments

This is what is left of
posted by Inertia

This is what is left of Version14 now. The last Extension already is in appropriate OpenTK enums, with the suffix Ext.

Same as with Texture3D, I recommend either keep it as is, or refactoring the *Ext tokens directly in your source code.

public enum Version14
        { //http://www.opengl.org/registry/specs/SGIS/generate_mipmap.txt
            GenerateMipmapHint = ( (int) 0x8192 ),
            GenerateMipmap = ( (int) 0x8191 ),
        }

Version14 is complete.
posted by the Fiddler

Version14 is complete.