Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Simplify ShadowMapper with AxisAlignedBoundingBox | Dan Goodliffe | 2 days |
| | |||
* | Template AxisAlignedBoundingBox on unit type | Dan Goodliffe | 2 days |
| | |||
* | Current tile in frustum as we loop | Dan Goodliffe | 2 days |
| | | | | Chunk by surface only, render if visible in frustum | ||
* | Construct terrain tile AxisAlignedBoundingBox during mesh generation | Dan Goodliffe | 2 days |
| | | | | | 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 | 2 days |
| | |||
* | Only render terrain tiles which are visible in the frustum | Dan Goodliffe | 2 days |
| | |||
* | Add function to test if an AABB is visible in a frustum | Dan Goodliffe | 2 days |
| | |||
* | Position is moved to Frustum | Dan Goodliffe | 2 days |
| | |||
* | Create AxisAlignedBoundingBox | Dan Goodliffe | 2 days |
| | | | | Used to define the extents of GeoData mesh | ||
* | Pass frustum into render functions | Dan Goodliffe | 6 days |
| | | | | Support for culling objects outside the view frustum | ||
* | Split core view definition out of Camera into Frustum | Dan Goodliffe | 7 days |
| | |||
* | Move camera out of gl folder, it's not OpenGL specific | Dan Goodliffe | 7 days |
| | |||
* | Have Camera keep an array of frustum plane definitionsHEADmain | Dan Goodliffe | 7 days |
| | | | | Based on code from https://ktstephano.github.io/rendering/stratusgfx/aabbs | ||
* | Constrain operator* for array*functor | Dan Goodliffe | 7 days |
| | | | | Stops it being a broken candidate for array*array | ||
* | Cache the camera's view matrix | Dan Goodliffe | 11 days |
| | |||
* | Work around clang thinking this is unused in lambdas | Dan Goodliffe | 12 days |
| | |||
* | 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 |
| | |||
* | Improve Terrain::generateMeshes performance | Dan Goodliffe | 2025-02-25 |
| | | | | | Creates mesh per surface based on a single buffer of all vertices and a collection of per surfuce indices. Makes ColourBias a uniform instead of a vertex attribute. | ||
* | Add VertexArrayObject::data for an external existing buffer | Dan Goodliffe | 2025-02-25 |
| | |||
* | Add glMappedBufferWriter helper | Dan Goodliffe | 2025-02-25 |
| | | | | Usable as an out iterator to transform directly to GPU mapped memory | ||
* | Merge remote-tracking branch 'origin/terrain-for-networks' | Dan Goodliffe | 2025-02-24 |
|\ | |||
| * | New hardcoded test rail network | Dan Goodliffe | 2025-02-24 |
| | | |||
| * | Don't rely on triangle centroid not already having a surface | Dan Goodliffe | 2025-02-24 |
| | | |||
| * | Improve number of segments in LinkCurve bases | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Add GeoData deformation perf test | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Add CLOGf for formatting logger | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Add timeouts to more geoData tests | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Process set height as required in chunks of target vertex | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Less allocy/work set based surface/recursive height setting | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Add adjusted boundary vertices to new/changes/boundary lists | Dan Goodliffe | 2025-02-23 |
| | | |||
| * | Expand new verts collection once | Dan Goodliffe | 2025-02-18 |
| | | | | | | | | Before doing vertex normal recalc only, not on every insert | ||
| * | Only build/run GeoDataMesh::sanityCheck for debug | Dan Goodliffe | 2025-02-17 |
| | | |||
| * | Refactor GeoData::setHeights until a struct made of a logical breakdown of ↵ | Dan Goodliffe | 2025-02-17 |
| | | | | | | | | the process | ||
| * | Fixes and tests to new range helpers | Dan Goodliffe | 2025-02-15 |
| | | |||
| * | Range adaptor to make triangle strip triples | Dan Goodliffe | 2025-02-15 |
| | | |||
| * | Use new helpers to simplify close entity search in GeoData::setPoint | Dan Goodliffe | 2025-02-14 |
| | | |||
| * | Add utility class to easily get nth field of tuple/pair for any types | Dan Goodliffe | 2025-02-14 |
| | | |||
| * | Add operator| overload to make OpenMesh XY_range(...) work with std::ranges | Dan Goodliffe | 2025-02-14 |
| | | | | | | | | Wraps the OpenMesh with iota and forwards the adapter | ||
| * | Move basic setHeights lambdas into proper helper functions | Dan Goodliffe | 2025-02-13 |
| | | |||
| * | Replace mesh generation counter with afterChange event | Dan Goodliffe | 2025-02-10 |
| | | |||
| * | Combine GeoData and Terrain class hierarchies | Dan Goodliffe | 2025-02-09 |
| | | |||
| * | Split GeoData mesh basics into a subclass | Dan Goodliffe | 2025-02-09 |
| | | | | | | | | Declutters the class for terrain related things | ||
| * | Move lots of geoData helpers into lib | Dan Goodliffe | 2025-02-09 |
| | | |||
| * | Initial commit setting terrain during network construction | Dan Goodliffe | 2025-02-09 |
| | | | | | | | | This is all in the wrong place, it shouldn't be part of the network interface. | ||
| * | Big of validation on getSurface | Dan Goodliffe | 2025-02-09 |
| | | |||
| * | Add tests which explicit count verts/edges/faces after terrain mesh modification | Dan Goodliffe | 2025-02-09 |
| | | |||
| * | Improve logging and fault detection during mesh mutation | Dan Goodliffe | 2025-02-08 |
| | |