Major architecture upgrade: - Add native render pass merging (hardware pass grouping, load/store op inference) - Implement heap-based aliasing for textures & buffers (D3D12-style) - Unify resource model: buffers and textures in one registry - Extend builder API for buffer creation/usage, access flags, hints - Improve barrier/state tracking (buffer hints, indirect argument state) - Update caching, hashing, and debug output for new model - Add enums/structs: AttachmentLoadOp, StoreOp, BufferHint, etc. - D3D12 backend: support named resources, temp upload buffers, correct heap usage - Update docs, benchmarks, and project files for new features Brings render graph closer to AAA engine standards, enabling efficient memory usage, lower driver overhead, and a more flexible API.
18 lines
653 B
C#
18 lines
653 B
C#
global using static TerraFX.Interop.DirectX.D3D12;
|
|
global using static TerraFX.Interop.DirectX.DirectX;
|
|
global using static TerraFX.Interop.DirectX.DXGI;
|
|
global using static TerraFX.Interop.Windows.Windows;
|
|
|
|
using Ghost.Core.Attributes;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.Versioning;
|
|
|
|
[assembly: InternalsVisibleTo("Ghost.Engine")]
|
|
[assembly: InternalsVisibleTo("Ghost.Editor")]
|
|
[assembly: InternalsVisibleTo("Ghost.Editor.Core")]
|
|
[assembly: InternalsVisibleTo("Ghost.Graphics.Test")]
|
|
[assembly: InternalsVisibleTo("Ghost.Graphics.Test-Winui")]
|
|
[assembly: SupportedOSPlatform("windows10.0.19041.0")]
|
|
|
|
|
|
[assembly: EngineAssembly] |