
missing enums
Posted Saturday, 6 October, 2007 - 20:42 by bobbypowers inGl.Enums.EnableCap is missing:
- MULTISAMPLE_ARB, although MULTISAMPLE_SGIS is there
Gl.Enums.GetPName is missing:
- SAMPLES
- SAMPLE_BUFFERS, although for both the *_SGIS is there
I've gotten around it by typecasting from Enums.All, just thought you might like to know :)
I might post more if I find additional things while porting my app from Tao to OpenTK today
yours,
Bobby


Comments
It seems likely that there
It seems likely that there won't be any more updates to the GL2 specs (last revision dates from February 2007). In this case, I might as well take the plunge and edit the specifications to fix problems such as these.
Please, post any other missing enums you find, especially in texture- and blend-related functions.
I think
I think GL.Enums.TextureTarget is missing:
- TEXTURE_RECTANGLE_ARB
- TEXTURE_RECTANGLE_NV
Also in GL.Enums.TextureWrapMode:
- CLAMP_TO_BORDER
- CLAMP_TO_BORDER_ARB
- CLAMP_TO_EDGE
but CLAMP_TO_BORDER_SGIS and CLAMP_TO_EDGE_SGIS are in there.
I've also just been casting from Enums.All.
Thanks, I'll check the
Thanks, I'll check the registry and add these.