Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add materializeRange override for naked iterator pair | Dan Goodliffe | 2024-02-12 |
| | |||
* | Cast relative position accordingly in geometric plane | Dan Goodliffe | 2024-02-12 |
| | |||
* | Add stripiter | Dan Goodliffe | 2024-02-12 |
| | | | | | A generic iterator wrapper returning a tuple of 3 references to the original values, as processed in the fashion of an OpenGL triangle strip. | ||
* | Allow specifying a target other than array buffer | Dan Goodliffe | 2024-02-02 |
| | | | | GL_ARRAY_BUFFER is the default. Also removes accidental use for OpenGL 4.x functions. | ||
* | Map buffers RO if const operations, upgrade to RW as required | Dan Goodliffe | 2024-02-02 |
| | |||
* | Don't keep a span, create as needed | Dan Goodliffe | 2024-02-02 |
| | | | | | Removes the error prone issue where data/size get out of sync. Fixes overflow issues leading to memory corruption of GPU data. | ||
* | Fix warnings in test-glContainer | Dan Goodliffe | 2024-02-02 |
| | | | | Also updates static asserts to requirements | ||
* | Add traits vertex attrib func override for arrays | Dan Goodliffe | 2024-01-27 |
| | | | | Address limitation on size when specifying arrays of glm::vec | ||
* | Support constructing a glContainer from a collection of the same type | Dan Goodliffe | 2024-01-27 |
| | |||
* | Remove the generic cache completely | Dan Goodliffe | 2024-01-26 |
| | |||
* | Add traits helpers for glTexParameter functions | Dan Goodliffe | 2024-01-25 |
| | |||
* | Replace static_asserts with concepts | Dan Goodliffe | 2024-01-25 |
| | |||
* | Add missing support for glUniform simple span of numbers | Dan Goodliffe | 2024-01-22 |
| | |||
* | String view/constexpr Shader instances | Dan Goodliffe | 2024-01-21 |
| | | | | Gonna need more constexpr stuff and strstr/strlen aren't that | ||
* | Add traits wrapper for setting uniforms | Dan Goodliffe | 2024-01-14 |
| | |||
* | We only need 3x3 matrix for model rotation spec | Dan Goodliffe | 2024-01-13 |
| | |||
* | Add glContainer::at override to update a single item | Dan Goodliffe | 2024-01-13 |
| | |||
* | Use std::span for iterator/data pointer in glContainer | Dan Goodliffe | 2024-01-13 |
| | |||
* | Default destructor for trivial types of glContainer | Dan Goodliffe | 2024-01-13 |
| | |||
* | Adding missing copy/move operations to glContainer | Dan Goodliffe | 2024-01-13 |
| | |||
* | Integer support in persistence | Dan Goodliffe | 2024-01-09 |
| | | | | | Splits bool and arithmatic types, pass arithmatic values as string views from JSON and parse according to the target type. | ||
* | Simplify find_arcs_radius | Dan Goodliffe | 2024-01-07 |
| | | | | | Removes the second half of the problem that had been previously zero'd when adjusting to relative positions | ||
* | Global positions in network data | Dan Goodliffe | 2024-01-07 |
| | |||
* | Template Ray on position type | Dan Goodliffe | 2024-01-07 |
| | |||
* | Unified crossProduct | Dan Goodliffe | 2024-01-07 |
| | |||
* | Helper to create a cubiod from dimensions | Dan Goodliffe | 2024-01-06 |
| | |||
* | Template GeometicPlane on Position type | Dan Goodliffe | 2024-01-05 |
| | |||
* | Inline functions of GeometricPlane | Dan Goodliffe | 2024-01-05 |
| | |||
* | Remove more use of legacy types | Dan Goodliffe | 2024-01-01 |
| | |||
* | Templatise functions in maths.h using PositionND | Dan Goodliffe | 2023-12-29 |
| | |||
* | Remove misleading power operator^ on vec2/3 | Dan Goodliffe | 2023-12-29 |
| | |||
* | Remove weird operator! on vec2/3 | Dan Goodliffe | 2023-12-29 |
| | |||
* | Add crossInt - cross product for integer vectors | Dan Goodliffe | 2023-12-02 |
| | |||
* | Model positions as integers | Dan Goodliffe | 2023-11-25 |
| | | | | | Introduces test failure in arcs due to rounding, but I don't want to create a complicated fix as link positions are still floats and hopefully that'll go away... somehow | ||
* | Remove getTransform | Dan Goodliffe | 2023-11-25 |
| | |||
* | Add Location method for getting the rotation only transform | Dan Goodliffe | 2023-11-11 |
| | |||
* | WIP typedefing all the things - sources | Dan Goodliffe | 2023-11-09 |
| | |||
* | WIP typedefing all the things - headers | Dan Goodliffe | 2023-11-07 |
| | |||
* | Reformat with new clang-format | Dan Goodliffe | 2023-11-07 |
| | |||
* | Swap GLEW for more modern glad | Dan Goodliffe | 2023-05-28 |
| | |||
* | Refactor InstanceVertices in terms of glContainer | Dan Goodliffe | 2023-05-01 |
| | |||
* | Don't explictly call destructor of contained element | Dan Goodliffe | 2023-05-01 |
| | |||
* | Add the pack container | Dan Goodliffe | 2023-05-01 |
| | | | | Keeps its elements densely packed together without any interest in order | ||
* | Add method to get GL buffer name of glContainer | Dan Goodliffe | 2023-05-01 |
| | |||
* | glContainer should at least double in capacity as required | Dan Goodliffe | 2023-05-01 |
| | |||
* | Extend glContainer with most of the interface expected of an STL container | Dan Goodliffe | 2023-05-01 |
| | |||
* | Initial commit of glContainer | Dan Goodliffe | 2023-04-30 |
| | | | | A std::vector like container backed by an OpenGL buffer. | ||
* | Rename strings.h to something that won't conflict with a system header | Dan Goodliffe | 2023-04-30 |
| | |||
* | Reformat with new clang-format 16 | Dan Goodliffe | 2023-04-29 |
| | |||
* | Drop .hpp for header only things | Dan Goodliffe | 2023-04-29 |
| | | | | Half of them acquired a .cpp part anyway |