Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-04 | VRAM detection implementation using GLX Mesa | Erik Kundiman | |
Plus make FreeBSD gets what Linux gets in the llgl.cpp file. | |||
2024-11-03 | Merge remote-tracking branch 'secondlife/release/maint-c' into maint-c | Erik Kundiman | |
2024-10-23 | Merge branch 'develop' into marchcat/xcode-16 | Nat Goodspeed | |
2024-10-22 | Merge remote-tracking branch 'origin/release/2024.09-ExtraFPS' into develop | Brad Linden | |
2024-10-22 | Merge branch 'develop' into marchcat/xcode-16 | Nat Goodspeed | |
2024-10-21 | Merge remote-tracking branch 'secondlife/release/2024.09-ExtraFPS' into ↵ | Erik Kundiman | |
2024.09-ExtraFPS | |||
2024-10-20 | viewer#2741 Don't reallocate image conversion buffer all the time | Andrey Kleshchev | |
2024-10-19 | Further revert llrender to LL's | Erik Kundiman | |
This might fix the black screen problem on Apple GPU. | |||
2024-10-18 | Merge branch 'main' into 2024.09-ExtraFPS | Erik Kundiman | |
2024-10-18 | Merge remote-tracking branch 'secondlife/release/2024.09-ExtraFPS' into ↵ | Erik Kundiman | |
2024.09-ExtraFPS | |||
2024-10-18 | Merge remote-tracking branch 'secondlife/release/2024.09-ExtraFPS' into ↵ | Erik Kundiman | |
2024.09-ExtraFPS | |||
2024-10-15 | Merge remote-tracking branch 'origin/release/2024.09-ExtraFPS' into develop | Brad Linden | |
2024-10-12 | No samples_passed when there's no GL_SAMPLES_PASSED | Erik Kundiman | |
cause it relies on querying mSamplesQuery, which would only have a value if it could run glBeginQuery(GL_SAMPLES_PASSED, mSamplesQuery). | |||
2024-10-12 | Preprocess eTextureType like sGLTextureType | Erik Kundiman | |
(cause eTextureType seems to have been designed to mirror sGLTextureType) otherwise you'd get a GL error of invalid enum of the first argument for glTexImage2D. | |||
2024-10-11 | secondlife/viewer#1883: (WIP) Alpha paint queue | Cosmic Linden | |
2024-10-10 | Implement the groundwork for wayland support. (#2803) | Nicky Dasmijn | |
During compile time try to detect libwayland-client-dev is installed, - If yes, compile a viewer which can run and start under wayland. libwayland-client is needed to detect if the viewer is hidden/minimized. - if no, disable wayland support and refuse to start the viewer under wayland (xwayland is okay). To not introduce a hard link dependency on libwayland-client.so the object will be loaded dynamically if needed. | |||
2024-10-08 | Merge branch 'develop' into marchcat/xcode-16 | Andrey Lihatskiy | |
# Conflicts: # .github/workflows/build.yaml # indra/llmath/raytrace.cpp | |||
2024-10-05 | viewer#2741 Sligtly better logging for a crash | Andrey Kleshchev | |
2024-10-04 | Fix mac link error using GL 4.3 functions (#2813) | Brad Linden | |
2024-10-04 | Merge pull request #2771 from secondlife/v-2472 | cosmic-linden | |
secondlife/viewer#2472: Debug tools for labeling textures | |||
2024-10-04 | Merge remote branch 'develop' into marchcat/xcode-16 | Nat Goodspeed | |
2024-10-03 | secondlife/viewer#2472: Also don't persist local file enumeration beyond ↵ | Cosmic Linden | |
next session | |||
2024-10-03 | secondlife/viewer#2472: Feedback | Cosmic Linden | |
Disable if not supported for OpenGL version Minimize performance footguns Simplify for clause | |||
2024-10-03 | Fix AMD gpu detection under linux | Rye Cogtail | |
2024-10-02 | secondlife/viewer#2472: Debug tools for labeling textures | Cosmic Linden | |
2024-10-03 | viewer#2709 Fix loose triangle #2 | Andrey Kleshchev | |
2024-10-02 | Merge pull request #2758 from Nicky-D/feature/fontcache | Andrey Lihatskiy | |
Port Fontcache from Firestorm. | |||
2024-10-02 | viewer#2762 Restore LLFontVertexBuffer for HUD | Andrey Kleshchev | |
2024-10-02 | Add another static_cast<long> to make the implicit conversion from size_t > ↵ | Nicky | |
long explicit. | |||
2024-10-02 | Rename namepsace to "ll" | Nicky | |
2024-10-01 | Merge remote-tracking branch 'origin/release/2024.09-ExtraFPS' into develop | Brad Linden | |
2024-10-01 | Port Fontcache from Firestorm. The cache will make sure a font only gets ↵ | Nicky | |
loaded once in memory and then reused, saving a lot of unecessary I/O and memory. | |||
2024-10-01 | Merge branch 'develop' into rye/continued-sdl-cleanup | Rye Mutt | |
2024-10-01 | Remove dead code related to GeForce Mobile GPUs (#2747) | Ansariel Hiller | |
2024-10-01 | Enable GL debug output support for linux | Rye Cogtail | |
2024-09-30 | Merge pull request #2733 from RyeMutt/rye/linux | Rye Mutt | |
SDL and Linux improvements | |||
2024-09-30 | Merge pull request #2723 from RyeMutt/uniform-cleanup | Rye Mutt | |
bindDeferredShader and dead uniform cleanup | |||
2024-09-28 | Fix using nvidia extension to get GL memory under linux | Rye Cogtail | |
2024-09-27 | Merge pull request #2713 from secondlife/v-2638 | cosmic-linden | |
Don't clear big render target if all pixels will be replaced | |||
2024-09-27 | Clean up unused uniforms in bindDeferredShader and move SSAO uniforms to two ↵ | Rye Cogtail | |
shaders that use them | |||
2024-09-27 | Remove dead llatmosphere code | Rye Cogtail | |
2024-09-27 | Remove dead LLPostProcess class and related code | Rye Cogtail | |
2024-09-27 | Use the more portable glDrawBuffers | Erik Kundiman | |
Also renamed the draw buffers to avoid risking the previously defined draw buffers with the same variable name. | |||
2024-09-27 | Preprocess glGetTexImage | Erik Kundiman | |
so it doesn't get compiled on non OpenGL 1.3 implementors. | |||
2024-09-27 | #2674 Optimize LLWorld::renderPropertyLines() - LLRender class code formatting | Alexander Gavriliuk | |
2024-09-27 | #2674 Optimize LLWorld::renderPropertyLines() - use vertexBatchPreTransformed() | Alexander Gavriliuk | |
2024-09-26 | secondlife/viewer#2638: Don't clear big render target if all pixels will be ↵ | Cosmic Linden | |
replaced | |||
2024-09-26 | viewer#2709 Fix loose triangle | Andrey Kleshchev | |
2024-09-26 | #2411 Allow disabling and enabling LLFontVertexBuffer | Andrey Kleshchev | |
for testing purposes | |||
2024-09-25 | Merge branch 'develop' into marchcat/xcode-16 | Nat Goodspeed | |