feat(window): can specify opengl version from args
Clang Build CI / run-no-video (push) Failing after 48s
Clang Lint CI / lint-no-video (push) Failing after 48s
Clang Build CI / run-video (push) Failing after 50s
Clang Build CI / build-release (push) Failing after 1m12s
Clang Lint CI / lint-video (push) Failing after 51s

This commit is contained in:
2026-08-27 16:29:06 +02:00
parent 73dd4b75d3
commit 1c44239a8d
7 changed files with 60 additions and 19 deletions
+2 -1
View File
@@ -8,7 +8,8 @@ void window_startup(void (*error_callback)(int, const char *), const unsigned in
void window_terminate();
Window *window_init(const char *title, unsigned char monitor_index,
bool windowed, Window *shared_context,
bool windowed, const unsigned int opengl_major,
const unsigned int opengl_minor, Window *shared_context,
void (*key_callback)(Window *, int, int, int, int));
void window_update_title(Window *window, const char *title);