diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-07-03 22:50:57 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-07-03 22:50:57 +0800 |
commit | 8a92757a5bdba3ba2dabd3d3b269f1b222038596 (patch) | |
tree | 23370852eee0a76cba65005ab9ae7b590b908af0 | |
parent | 2df6ca5bc3e7931fcdddc57618a6d08547ba411b (diff) |
Remove mFullscreenBits from llwindowsdl.cpp
See commit 6e6e105f01726208d60c060c4de653cd15470db3
-rw-r--r-- | indra/llwindow/llwindowsdl.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index 69332e36b6..b733ee9015 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -427,14 +427,12 @@ bool LLWindowSDL::createContext(int x, int y, int width, int height, int bits, b /* mFullscreenWidth = mSurface->w; mFullscreenHeight = mSurface->h; - mFullscreenBits = mSurface->format->BitsPerPixel; */ SDL_GetWindowSize(mWindow, &mFullscreenWidth, &mFullscreenHeight); mFullscreenRefresh = -1; LL_INFOS() << "Running at " << mFullscreenWidth << "x" << mFullscreenHeight - << "x" << mFullscreenBits << " @ " << mFullscreenRefresh << LL_ENDL; } @@ -445,7 +443,6 @@ bool LLWindowSDL::createContext(int x, int y, int width, int height, int bits, b mFullscreen = false; mFullscreenWidth = -1; mFullscreenHeight = -1; - mFullscreenBits = -1; mFullscreenRefresh = -1; std::string error = llformat("Unable to run fullscreen at %d x %d.\nRunning in window.", width, height); |