- Updated namespaces from `Ghost.UnitTest` to `Ghost.Graphics.Test` across multiple files. - Refactored `GraphicsTestWindow` to use a new `RenderSystem` configuration. - Removed deprecated `Logger` and `SerializationTest` classes. - Improved memory management in D3D12 components, including resource allocation and cleanup. - Added `[SupportedOSPlatform]` attributes to specify Windows version compatibility. - Updated `.editorconfig` settings and project references for consistency. - Enabled `nativeDebugging` in `launchSettings.json`.
14 lines
504 B
C#
14 lines
504 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;
|
|
|
|
[assembly: InternalsVisibleTo("Ghost.Engine")]
|
|
[assembly: InternalsVisibleTo("Ghost.Editor")]
|
|
[assembly: InternalsVisibleTo("Ghost.Editor.Core")]
|
|
[assembly: InternalsVisibleTo("Ghost.Graphics.Test")]
|
|
|
|
[assembly: EngineAssembly] |