userFelixcancel
reporust_rebootcancel

126 Commits over 123 Days - 0.04cph!

Today
Merge from fast_debug_draw
Today
Merge from /main
Today
Merge from /main
Today
Merge from /main
Today
Change distance fade to fade to black instead of transparent, which was the original DDraw behavior.
Today
Added missing changes to material variant that Unity didn't save for some damned reason.
Today
Various cleanups and fixes: - Add InstancedDebugDraw properly to the Main Camera Prefab instead of adding it from code. - Remove FastDebugLine from always included shaders, utilising shader variant stripping. - Add material(s) to ensure line shader is included in builds. - Work around Unity quirk: Can't set shader commands from material property blocks. - Add a define to avoid matrix packing for easily confused GPU drivers. - Clean up shader properties and exposed the actual distance for distance fade. - Expose _Color, _LineWidth, _DistanceFade and _TransformType for potential use without instancing.
Yesterday
Apply D3D11 hack to fix IndirectDrawIndexedArgs.startInstance to Metal and OpenGL as well. Actually, the hack is now enabled for all renderers except Vulkan.
3 Days Ago
merge from fast_debug_draw (fix shader on metal)
3 Days Ago
fast debug draw: skip geometry shader on metal
3 Days Ago
merge from main
4 Days Ago
Merge from fast_debug_draw (expand character set)
4 Days Ago
Expand character set of fast debug draw to all of ASCII and some useful characters from CP437
4 Days Ago
fix server build
4 Days Ago
fix server build (IndirectUtil)
4 Days Ago
fix server build (FastDebugDraw)
4 Days Ago
Merge from fast_debug_draw
4 Days Ago
Merge from /main
4 Days Ago
Merge from /main
5 Days Ago
Merge from /main
9 Days Ago
Don't actually disable QualitySettings.streamingMipmapsActive if we ever had an Update() cycle with it enabled. Instead, enable Texture.streamingTextureForceLoadAll for the same effect without crippling Unity's TextureStreamingManager
10 Days Ago
Map texture streaming ConVar to the inverse of Texture.streamingTextureForceLoadAll
16 Days Ago
Merge from fix_texture_streaming - let's see if Jenkins will pick up on this
16 Days Ago
Merge from /indirect_instancing to fix build
16 Days Ago
Merge from .../fix_texture_streaming
16 Days Ago
Experiment: Set streaming mipmaps memory budget as a percentage of available VRAM, rather than calculate it based on texture load.
22 Days Ago
+ Reworked the DebugLine shader, fixing various isses with pixel alignment and perspective. + Added '-' character for negative numbers :) + Made sure that text size is always divisible by 4 for a clearer appearance. Also raised the default text thickness to 2. (I'm a fan of thin lines, but you really couldn't read these.)
24 Days Ago
Merge from /main
24 Days Ago
Cerry-pick BufferMemoryBase, CommandMemoryBase and InstanceMemoryBase
24 Days Ago
Merge from /main
24 Days Ago
Final refactorings: FastDebugDraw is now InstancedDebugDraw Added ConVar to switch between old and new system. Added UnityGLInterceptor as a base to UnityGLEmulator to intercept Unity.GL calls but avoid breaking classic DDraw. Opted for nested types instead of overly long namespace names. Exhibit proper resource management in InstancedDebugDraw as well as InstancedDebugMeshGenerator.
24 Days Ago
Refactor FastDebugDraw to use the new base classes, fix a bug with lingering instances and add a public API that matches with DDraw.
24 Days Ago
Pull out base classes for instancing: InstanceMemoryBase, CommandMemoryBase and BufferMemoryBase
25 Days Ago
Restore `ScreenText` functionality. FastDDraw has reached feature parity with DDraw. 🎉
25 Days Ago
Re-added debug capsule rendering 💊
25 Days Ago
* Fix text rendering by converting LineStrip topology to Lines * Allow world-positioned but screen-aligned text like DDraw.Text * Implement distance fade effect
26 Days Ago
FastDebugDraw: Established compatibility with the current DDraw system (fixed)
26 Days Ago
FastDebugDraw: Established compatibility with the current DDraw system
30 Days Ago
Cherry-pick marking DamageTracker `public`
30 Days Ago
Mark DamageTracker `public` (third attempt 😤 )
30 Days Ago
Mark DamageTracker `public` (again 🙄)
30 Days Ago
Mark DamageTracker `public`
30 Days Ago
Cherry-pick MemoryBlock, AllocatingMemoryBlock and DamageTracker to be used in FastDebugDraw
30 Days Ago
(Add) Pull out MemoryBlock, AllocatingMemoryBlock and DamageTracker into separate files so they can be reused. In a different directory this time, so Plastic may allow me to cherry-pick, please.
30 Days Ago
(Remove) Pull out MemoryBlock, AllocatingMemoryBlock and DamageTracker into separate files so they can be reused. In a different directory this time, so Plastic may allow me to cherry-pick, please.
30 Days Ago
FastDebugDraw WIP with fucking new files
30 Days Ago
Add Assets/Scripts/Rendering/Instancing/Indirect directory, hoping that Plastic shuts up about stupid directory conflicts
30 Days Ago
(Add) Pull out MemoryBlock, AllocatingMemoryBlock and DamageTracker into separate files so they can be reused by /main/fast_debug_draw
30 Days Ago
(Remove) Pull out MemoryBlock, AllocatingMemoryBlock and DamageTracker into separate files so they can be reused by /main/fast_debug_draw
33 Days Ago
Use FastDebugDraw to draw debugging information of IndirectInstancing