| 237 | string glslversion = "150"; |
| 238 | #endif |
| 239 | void SDLRequireGLVersion(int major, int minor) { |
| 240 | #ifdef PLATFORM_WINNIX |
| 241 | gl_major = major; |
| 242 | gl_minor = minor; |
| 243 | glslversion = cat(major, minor, "0"); |
| 244 | #endif |
| 245 | }; |
| 246 | |
| 247 | string SDLInit(string_view title, const int2 &desired_screensize, bool isfullscreen, int vsync, |
| 248 | int samples) { |