summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAge
...
* Remove weird operator! on vec2/3Dan Goodliffe2023-12-29
|
* Add crossInt - cross product for integer vectorsDan Goodliffe2023-12-02
|
* Model positions as integersDan Goodliffe2023-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 getTransformDan Goodliffe2023-11-25
|
* Add Location method for getting the rotation only transformDan Goodliffe2023-11-11
|
* WIP typedefing all the things - sourcesDan Goodliffe2023-11-09
|
* WIP typedefing all the things - headersDan Goodliffe2023-11-07
|
* Reformat with new clang-formatDan Goodliffe2023-11-07
|
* Swap GLEW for more modern gladDan Goodliffe2023-05-28
|
* Refactor InstanceVertices in terms of glContainerDan Goodliffe2023-05-01
|
* Don't explictly call destructor of contained elementDan Goodliffe2023-05-01
|
* Add the pack containerDan Goodliffe2023-05-01
| | | | Keeps its elements densely packed together without any interest in order
* Add method to get GL buffer name of glContainerDan Goodliffe2023-05-01
|
* glContainer should at least double in capacity as requiredDan Goodliffe2023-05-01
|
* Extend glContainer with most of the interface expected of an STL containerDan Goodliffe2023-05-01
|
* Initial commit of glContainerDan Goodliffe2023-04-30
| | | | A std::vector like container backed by an OpenGL buffer.
* Rename strings.h to something that won't conflict with a system headerDan Goodliffe2023-04-30
|
* Reformat with new clang-format 16Dan Goodliffe2023-04-29
|
* Drop .hpp for header only thingsDan Goodliffe2023-04-29
| | | | Half of them acquired a .cpp part anyway
* Add getTransform to Location; wraps the standard mat4 calculationsDan Goodliffe2023-04-23
|
* Fixup vertexAttribFunc for matricesDan Goodliffe2023-04-19
|
* Specialize vertexAttribFunc for matrices because there's an upper limit of ↵Dan Goodliffe2023-04-18
| | | | size 4 on attrib pointers
* Current thread partakes in work effort while waitingDan Goodliffe2023-04-14
| | | | This will prevent deadlock if the work pool is otherwise busy by ensuring work is always being done
* Simplify doWork, add tests for various interface usesDan Goodliffe2023-04-14
|
* New WorkItem/job/promise/future based interfaceDan Goodliffe2023-04-14
|
* Simplify worker with jthreadDan Goodliffe2023-04-14
| | | | | Moves thread collection to bottom of class so threads are joined before job storage is destroyed.
* Global worker instanceDan Goodliffe2023-04-14
|
* Fix submitting of integer values via vertex arraysDan Goodliffe2023-04-13
|
* Add operator* helper specialised for std::spanDan Goodliffe2023-04-10
|
* operator* collection helper reserves target space when possibleDan Goodliffe2023-04-10
|
* Constraint operator* collection helper to IterableCollectionsDan Goodliffe2023-04-10
|
* Add lots of split required stuff to geometric planeDan Goodliffe2023-04-09
|
* Add helper to create a Ray from two pointsDan Goodliffe2023-04-09
|
* Start to factor out geometric place from face controller splitDan Goodliffe2023-04-09
|
* Add helper for iterating over a range defined by a pair of iteratorsDan Goodliffe2023-04-07
|
* Add persistence support for std::optional<>sDan Goodliffe2023-03-20
|
* Lazy initialisation of SelectionPtr in persistValueDan Goodliffe2023-03-20
| | | | Always needed for write phase, but only need on read if their's a name match.
* Allow overriding vectorOfN's returned typeDan Goodliffe2023-03-17
|
* Add postLoad support to persistenceDan Goodliffe2023-03-14
|
* CLOG includes line numberDan Goodliffe2023-03-11
|
* Inplace operator%= for vec3/mat4 mutationDan Goodliffe2023-03-10
|
* Replace SelectionT for glm::vec with one for std::span, reimplement it as a ↵Dan Goodliffe2023-03-05
| | | | | | wrapper All the implementation is now shared, regardless of length and qualifier.
* Don't leak root node when parsing XMLDan Goodliffe2023-03-02
|
* Add ParseBaseDan Goodliffe2023-03-02
| | | | Acts as a base class for persistence parser, encompasses the parse stack and manages shared objects
* Remove to specify if the Selection pointer type is shared or notDan Goodliffe2023-02-28
| | | | Inferred based on whether the pointer is copyable or not.
* operator*= can work on any iterable collectionDan Goodliffe2023-02-27
|
* Add nodiscard to many collections helpersDan Goodliffe2023-02-27
|
* Helpers to create container instances from rangesDan Goodliffe2023-02-25
|
* Fixed up vector operator+ elementDan Goodliffe2023-02-24
|
* Support parsing string values in persistence readDan Goodliffe2023-02-23
|