Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Remove the old unused network.png icon | Dan Goodliffe | 4 days |
| | |||
* | Use new SVG icons on main toolbar | Dan Goodliffe | 6 days |
| | |||
* | Add SvgIcon class | Dan Goodliffe | 6 days |
| | | | | Based on Icon class, but constructor replaced with calls to lunasvg. | ||
* | Add lunasvg (and plutovg) | Dan Goodliffe | 7 days |
| | | | | | This is the SVG library used by ImGui, so makes sense a choice even if we're not using it there yet. | ||
* | Remove explicit library referring to imguisdl2 | Dan Goodliffe | 7 days |
| | | | | It already exists via the library of all of thirdparty/release. | ||
* | Auto resize windows to content | Dan Goodliffe | 8 days |
| | |||
* | Add basic instructions to query tool | Dan Goodliffe | 8 days |
| | | | | Sets default text. | ||
* | Support capturing and reacting to ImGui window closure | Dan Goodliffe | 2025-03-20 |
| | |||
* | Remove unrequired UIShader | Dan Goodliffe | 2025-03-19 |
| | |||
* | Remove lots of stuff not required or superseded with ImGui use | Dan Goodliffe | 2025-03-19 |
| | |||
* | Replace basic query tool with a ImGui version | Dan Goodliffe | 2025-03-19 |
| | |||
* | Replace basic rail builder UI with a ImGui version | Dan Goodliffe | 2025-03-19 |
| | |||
* | Add operator to get ImTextureID from an Icon | Dan Goodliffe | 2025-03-15 |
| | |||
* | Tidy glArrays, fixes warnings | Dan Goodliffe | 2025-03-15 |
| | |||
* | Add ImGui wrappers for creating a toolbar docked to a viewport edge | Dan Goodliffe | 2025-03-15 |
| | | | | Based on, but simplified, code for BeginMainMenuBar. | ||
* | Wrap imgui_intenal if requested | Dan Goodliffe | 2025-03-15 |
| | |||
* | Update ImGui to latest | Dan Goodliffe | 2025-03-15 |
| | |||
* | Support resizing the main window | Dan Goodliffe | 2025-03-14 |
| | |||
* | Add support for resizing a SceneRenderer | Dan Goodliffe | 2025-03-14 |
| | |||
* | Add support for changing the aspect ratio of a camera | Dan Goodliffe | 2025-03-14 |
| | |||
* | Fix ratio to include return type in common intermediary type | Dan Goodliffe | 2025-03-14 |
| | |||
* | Merge branch 'culling' | Dan Goodliffe | 2025-03-13 |
|\ | |||
| * | Split Terrain::generateMeshes into smaller functions | Dan Goodliffe | 2025-03-12 |
| | | | | | | | | | | | | Also removes incorrect optimisation that a tile's AABB could be assumed from tile base position; in fact some faces cross the boundaries and the AABB needs to account for this. | ||
| * | Perfectly forward range when materializing | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Rebalance shadow band distribution | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | Extends the initial band from around 34m to around 100m. | ||
| * | Cull terrain meshes from render that don't cast a shadow into the frustum | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Add a spike of terrain in test-render | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | Very fake, but casts a clear shadow. | ||
| * | Initialise shadow bounding box to light view point | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | Then extended to cover the view extents. | ||
| * | Extend Frustum for testing for shaded by | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | | | Like contains, but doesn't test the back plane as shadow caster can be anywhere behind the view point and still cast into it. | ||
| * | Pass a Frustum to shadow renderers | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | The frustum might not be correct at this stage. | ||
| * | Simplify ShadowMapper with AxisAlignedBoundingBox | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Template AxisAlignedBoundingBox on unit type | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Current tile in frustum as we loop | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | Chunk by surface only, render if visible in frustum | ||
| * | Construct terrain tile AxisAlignedBoundingBox during mesh generation | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | | | No surface is simply the tile bounds, but with a surface, it's constrained to just the bounds of the surface itself. | ||
| * | AxisAlignedBoundingBox construct from range instead of span | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Only render terrain tiles which are visible in the frustum | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Add function to test if an AABB is visible in a frustum | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Position is moved to Frustum | Dan Goodliffe | 2025-03-11 |
| | | |||
| * | Create AxisAlignedBoundingBox | Dan Goodliffe | 2025-03-11 |
| | | | | | | | | Used to define the extents of GeoData mesh | ||
| * | Pass frustum into render functions | Dan Goodliffe | 2025-03-07 |
|/ | | | | Support for culling objects outside the view frustum | ||
* | Split core view definition out of Camera into Frustum | Dan Goodliffe | 2025-03-05 |
| | |||
* | Move camera out of gl folder, it's not OpenGL specific | Dan Goodliffe | 2025-03-05 |
| | |||
* | Have Camera keep an array of frustum plane definitions | Dan Goodliffe | 2025-03-05 |
| | | | | Based on code from https://ktstephano.github.io/rendering/stratusgfx/aabbs | ||
* | Constrain operator* for array*functor | Dan Goodliffe | 2025-03-05 |
| | | | | Stops it being a broken candidate for array*array | ||
* | Cache the camera's view matrix | Dan Goodliffe | 2025-03-02 |
| | |||
* | Work around clang thinking this is unused in lambdas | Dan Goodliffe | 2025-03-01 |
| | |||
* | Split meshes by surface and tile | Dan Goodliffe | 2025-02-26 |
| | | | | | Tile is derived per face based on the first vertices point rounded to roughly 1km. | ||
* | Name Worker threads if supported | Dan Goodliffe | 2025-02-26 |
| | |||
* | Add range support for OpenMesh::PolyConnectivity::EntityRange | Dan Goodliffe | 2025-02-26 |
| | |||
* | Create perf-terrain test window globally | Dan Goodliffe | 2025-02-26 |
| |