Bind basic information functions. */
| 222 | |
| 223 | /** Bind basic information functions. */ |
| 224 | static bool BindBasicInfoProcs() |
| 225 | { |
| 226 | if (!BindGLProc(_glGetString, "glGetString")) return false; |
| 227 | if (!BindGLProc(_glGetIntegerv, "glGetIntegerv")) return false; |
| 228 | if (!BindGLProc(_glGetError, "glGetError")) return false; |
| 229 | |
| 230 | return true; |
| 231 | } |
| 232 | |
| 233 | /** Bind OpenGL 1.0 and 1.1 functions. */ |
| 234 | static bool BindBasicOpenGLProcs() |