userFelixcancel
reporust_rebootcancel

574 Commits over 426 Days - 0.06cph!

58 Days Ago
Fix typo
58 Days Ago
- Fix rendering issues due to various jobs executing for command indices that are no longer in use. - Fix broken debug draw when damage region bitscan job is active. - Split `surviving_command_counts` into `command_counts_after_culling` and `command_counts_after_reordering` for clarity. - Create a universal IsCallVisible() function instead of the mess we had before
2 Months Ago
- Rewrite the buffer update logic to ensure a direct update only happens once per frame to make DX11 happy. - Always update the entire buffer to make greedy GPU drivers happy. - Add IGraphicsBuffer wrapper because Unity didn't do it so I can finally stop copy/pasting everything. - Use a function pointer (👻) in damage region processing for similar reasions. - Unlock the arrays in Update in case OnPreCull wasn't called. - New debugging ConVars: `reorder_instances_job`, `damage_bitscan_job` and `buffer_upload_mode`
2 Months Ago
A whole marathon of Indirect Instancing changes: - Schedule all jobs at the beginning of LateUpdate() for better worker utilisation. - Further improve scheduling behavior by modeling actual dependencies between jobs using writes_to_* and reads_from_* handles. - Allow instance reordering and command aggregation to run in paralell to give even more flexibility to the scheduler. - Run the debug overlay (where possible) in parallel with the jobs to improve performance - Avoid garbage allocation when scheduling the frustum culling job. (GeometryUtility.CalculateFrustumPlanes) - Schedule all jobs using ScheduleByRef. - Correctly set `[ReadOnly]` and `readonly` for all jobs to help Burst as much as possible. - Make batch size tunable: `indirect_instancing.batches_per_worker` - Add somewhat automatic instrumentation to CrudeProfiler via `using` statements. - Add ProfilerMarker to mimic what Unity 6 is doing with `using` statements. (Still need to verify it this compiles out properly.) - Add more profiler instrumentation. - Rename a ton of things for clarity. - Remove CommandBuffer. We won't need it where we're going.
2 Months Ago
Some cleanups
2 Months Ago
Fix burst compile issues by bringing back `DamageRegion` struct
2 Months Ago
Jobify the damage region scanning for instance data
2 Months Ago
First implementation of hybrid monster meshes
2 Months Ago
Merge from /indirect_instancing/layers
2 Months Ago
Slightly optimise command reordering
2 Months Ago
Jobified instance reordering
2 Months Ago
▅▇▅▊█▋▉▌ ▆▌▄██▇▌▇ ▍▆▄▊█▍▍▉▍▉ ▌▅▆▉▇▌█ █▆ ▆█▋▄▇ ▍▍▊▊▋▄ ▍▊▅▄▄
2 Months Ago
Merge bitmapped_damage_tracking → indirect_instancing
2 Months Ago
Implement bitmapped damage tracking
2 Months Ago
Rebase on current /indirect_instancing
2 Months Ago
Clean up some failed experiments
2 Months Ago
Fix nothing rendering for real this time.
2 Months Ago
Fix nothing actually rendering with new Graphics.DrawMeshInstancedIndirect based draw call submission
2 Months Ago
Fix NRE in Indirect Instancing debug overlay
2 Months Ago
Add agressive optimisation attributes to the hot path of Indirect Instancing.
3 Months Ago
Rebase on /main (save 271)
3 Months Ago
Regenerate ConVars and force bounds to be always huge (experiment)
3 Months Ago
Add a third submission mode to indirect instancing which works through `Graphics.DrawMeshInstancedIndirect` and avoids copying to a command buffer. Enable `indirect_instancing.command_buffer` to switch back to the old way.
3 Months Ago
Finalise SIMD terrain culling implementation: - Fix oscillation/flicker bug by tracking individual ray progress properly. - Adjust step size dynamically with altitude to reduce iterations. - Limit overall iterations to ConVar `indirect_instancing.tc_max_iterations`. - Ignore rays to instances that have been culled in a previous step.
3 Months Ago
Add more debug output to the indirect_instancing.debug overlay
3 Months Ago
Add new SIMD terrain culling implementation (WIP) providing ~3x speedup (up to 30x in certain cases)
3 Months Ago
Only allow StartMotion() when IsDynamic is set
3 Months Ago
Rebase on /main
3 Months Ago
Speed up motion list execution 30x by caching matrices and checking them for changes.
3 Months Ago
Rebase on /main
3 Months Ago
Rebase on /main
3 Months Ago
Regenerate ConsoleSystem.cs
3 Months Ago
Regenerate ConsoleSystem.cs
3 Months Ago
Merge other fixes from /indirect_instancing
3 Months Ago
Rebase on /main
3 Months Ago
Merge build fix from /indirect_instancing_fixes
3 Months Ago
Restore constant that I removed because I was an idiot.
3 Months Ago
Merge from /indirect_instancing_fixes
3 Months Ago
Rebase on /main
3 Months Ago
Fix multiple issues with LOD bounds/distance calculations: - Never return zero-bounds for anything, try multiple things and fall back to 1 m³ as a last resort. - Always use bounds (and center) of LOD0 for consensus between LOD states. - Fix fallback renderer using transform position instead of bounds center for distance calculations.
3 Months Ago
Fix Radtown sign by manually disabling mipmap streaming.
3 Months Ago
Properly fix brightness flicker by using a GlobalKeyword instead of a string
3 Months Ago
Add preliminary support for layers to indirect instancing
3 Months Ago
Fixed brightness flickering on indirect instancing objects when moving camera (inefficient variant)
3 Months Ago
Completely hide shadow-proxy states affected by agressiveShadowLOD to improve performance
3 Months Ago
Completely hide shadow-proxy states affected by agressiveShadowLOD to improve performance
3 Months Ago
Rebase on /main
3 Months Ago
Remove merging of damaged regions as the sorting and merging was taking more time than it saved in some situations. If frequent buffer updates continue to be a problem, /indirect_instancing/bitmapped_damage_tracking should fix that.
3 Months Ago
Add ConcurrentBoolArray as a simpler (but more wasteful) form of ConcurrentBitArray to get things going quicker. Add a function to find contiguous regions of values efficiently.
3 Months Ago
Only run terrain culling when it's actually worth it (when camera is above some but not all terrain)