the function has been disabled on svn (probably due to changes in the mechanism to query extensions in forward compatible contexts), is there any replacement that I cannot find, or should everyone implement this themselves?
The latter:
GL.GetString(StringName.Extensions, i)
GL.GetString(StringName.Extensions).Split(' ')
String comparisons should be case-insensitive and exact (i.e. a == b rather than a.Contains(b)).
a == b
a.Contains(b)
The bindings no longer contain any version-specific code (the SupportsExtension() method would have to be implemented on each profile independently).
Thanks for confirmation.
Just fyi the other issues porting Bubble Team to 0.9.9-2b were:
It's working flawless tho.
Comments
Re: GL.SupportsExtension()
The latter:
GL.GetString(StringName.Extensions, i)GL.GetString(StringName.Extensions).Split(' ')String comparisons should be case-insensitive and exact (i.e.
a == brather thana.Contains(b)).The bindings no longer contain any version-specific code (the SupportsExtension() method would have to be implemented on each profile independently).
Re: GL.SupportsExtension()
Thanks for confirmation.
Just fyi the other issues porting Bubble Team to 0.9.9-2b were:
It's working flawless tho.