Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
| * | Always set pixel unpack alignment before generating font texture content | Dan Goodliffe | 2024-01-26 | |
|/ | ||||
* | Remove the static texture cache | Dan Goodliffe | 2024-01-25 | |
| | | | | | Static variables persist too long, destruction is unmanaged and occurs after the gl context is gone. | |||
* | Add traits helpers for glTexParameter functions | Dan Goodliffe | 2024-01-25 | |
| | ||||
* | Replace static_asserts with concepts | Dan Goodliffe | 2024-01-25 | |
| | ||||
* | Define GLM_ENABLE_EXPERIMENTAL | Dan Goodliffe | 2024-01-25 | |
| | | | | | GLM v1 requires this for use of experimental features which may change... We accept this for now. | |||
* | Single list of all shader programs | Dan Goodliffe | 2024-01-24 | |
| | | | | Pushes common stuff through a helper function | |||
* | Merge remote-tracking branch 'origin/instanced-networks' | Dan Goodliffe | 2024-01-24 | |
|\ | ||||
| * | Fix network population of position in gBuffer | Dan Goodliffe | 2024-01-23 | |
| | | | | | | | | Adds some rails to the basic test highlighting broken shadows | |||
| * | Bind the network profile in as uniforms | Dan Goodliffe | 2024-01-22 | |
| | | | | | | | | Makes the network shaders generic to network type | |||
| * | Add missing support for glUniform simple span of numbers | Dan Goodliffe | 2024-01-22 | |
| | | ||||
| * | Remove the old custom mesh per network link rendering | Dan Goodliffe | 2024-01-21 | |
| | | ||||
| * | Dynamic number of segments into curve render | Dan Goodliffe | 2024-01-21 | |
| | | | | | | | | | | Simpler formula than the old one, neither scientific, needs to tests to demonstrate a decent result for whatever formula we use. | |||
| * | Use symbol GL_MAX_GEOMETRY_OUTPUT_VERTICES to lookup the implementation ↵ | Dan Goodliffe | 2024-01-21 | |
| | | | | | | | | limit at runtime | |||
| * | Replace tokens found with values from getIntegerv | Dan Goodliffe | 2024-01-21 | |
| | | ||||
| * | Look for and replace GL_XXX with fixed string | Dan Goodliffe | 2024-01-21 | |
| | | ||||
| * | Include ctre submodule | Dan Goodliffe | 2024-01-21 | |
| | | ||||
| * | String view/constexpr Shader instances | Dan Goodliffe | 2024-01-21 | |
| | | | | | | | | Gonna need more constexpr stuff and strstr/strlen aren't that | |||
| * | Fix includes in test glCtxtBhvr | Dan Goodliffe | 2024-01-21 | |
| | | ||||
| * | Pass curve link radius, no recalculate, its constant | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Implement basic network curve part shader | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Common code between straight/curve network geometry shaders | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Implement complete network straight part shader | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Update network with vertex array | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Render rail network using new shaders | Dan Goodliffe | 2024-01-20 | |
| | | | | | | | | Non-functional, totally unimplemented at this stage | |||
| * | Copy render vital link data to vertex buffer | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Add mail rail network to render test, include curves | Dan Goodliffe | 2024-01-20 | |
| | | ||||
| * | Add rail network render test | Dan Goodliffe | 2024-01-19 | |
|/ | ||||
* | 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 | |
| | ||||
* | Merge branch 'model-lights' | Dan Goodliffe | 2024-01-13 | |
|\ | ||||
| * | Only create VAOs for the light type(s) in use | Dan Goodliffe | 2024-01-13 | |
| | | ||||
| * | Merge common parts of light type vertices | Dan Goodliffe | 2024-01-13 | |
| | | ||||
| * | Minor tidy up | Dan Goodliffe | 2024-01-13 | |
| | | ||||
| * | Add old street lamp model | Dan Goodliffe | 2024-01-13 | |
| | | ||||
| * | Update point light shaders for instancing | Dan Goodliffe | 2024-01-13 | |
| | | ||||
| * | Add model support for point lights | Dan Goodliffe | 2024-01-12 | |
| | | | | | | | | Still invokes non-instanced point light shader | |||
| * | Fix order or multiple to address reversed rotation | Dan Goodliffe | 2024-01-12 | |
| | | ||||
| * | Tweak street light definition | Dan Goodliffe | 2024-01-12 | |
| | | ||||
| * | Full implementation passing through light defs from vertex data | Dan Goodliffe | 2024-01-11 | |
| | | | | | | | | | | Note: there is a bug where the light position/direction are rotated backwards to the model even though its using the model's rotation matrix... no idea why/how. | |||
| * | Initial commit with working light instancing | Dan Goodliffe | 2024-01-10 | |
| | | ||||
| * | Add spot light definition, loader, and rendering | Dan Goodliffe | 2024-01-10 | |
| | | | | | | | | Rendering is untested, data is passed to whatever GL program is currently active. | |||
| * | Add lights resource set and test scene | Dan Goodliffe | 2024-01-09 | |
| | | ||||
| * | Add the Illuminator (type) and Light (instance) classes | Dan Goodliffe | 2024-01-09 | |
|/ | ||||
* | 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. | |||
* | Fix test-persistence dependencies | Dan Goodliffe | 2024-01-08 | |
| | ||||
* | Merge branch 'global-network' | Dan Goodliffe | 2024-01-07 | |
|\ |