diff options
author | Rye Cogtail <rye@lindenlab.com> | 2024-09-29 03:19:43 -0400 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-05-28 23:25:10 +0800 |
commit | 643e3d13dda050e20ae4535f67f99a134d53419a (patch) | |
tree | 85075b2eb2e183821ab507162342e671a8d3308e /indra/llwindow/llwindow.cpp | |
parent | 300e52d800112fab9f0137d067e9117bb2f9bba8 (diff) |
Clean up SDL window creation and fix various bugs
Add support for Core and Debug GL context creation
Fix window position support
Fix vsync handling
Add minimum GL context support
Diffstat (limited to 'indra/llwindow/llwindow.cpp')
-rw-r--r-- | indra/llwindow/llwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindow.cpp b/indra/llwindow/llwindow.cpp index 302d038a79..4f3cc69c75 100644 --- a/indra/llwindow/llwindow.cpp +++ b/indra/llwindow/llwindow.cpp @@ -421,7 +421,7 @@ LLWindow* LLWindowManager::createWindow( fullscreen, clearBg, enable_vsync, use_gl, ignore_pixel_depth); #elif LL_SDL new_window = new LLWindowSDL(callbacks, - title, x, y, width, height, flags, + title, name, x, y, width, height, flags, fullscreen, clearBg, enable_vsync, use_gl, ignore_pixel_depth, fsaa_samples); #elif LL_WINDOWS new_window = new LLWindowWin32(callbacks, |