Major refactor of render pipeline and shader system: - Replaced legacy shader properties with source generator and attribute-based HLSL struct generation. - Introduced ShaderPropertiesRegistry for runtime property layout/code registration. - Added modular IRenderPipeline, IRenderPipelineSettings, and IRenderPayload interfaces. - Implemented GhostRenderPipeline and ECS-driven GPUScene management. - Added experimental DirectX 12 Work Graph support. - Refactored shader compilation, variant hashing, and caching. - Updated APIs for consistency and improved codegen for registration. These changes modernize the rendering infrastructure for advanced features like work graphs and dynamic pipelines. BREAKING CHANGE: Shader DSL, pipeline, and property APIs have changed. Existing shaders and pipeline integrations must be updated.
37 lines
1.0 KiB
XML
37 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
|
|
<PackageReference Include="Antlr4BuildTasks" Version="12.11.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Antlr4 Include="Grammar\GhostShaderLexer.g4">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<Listener>false</Listener>
|
|
<Visitor>true</Visitor>
|
|
</Antlr4>
|
|
<Antlr4 Include="Grammar\GhostComputeShaderParser.g4">
|
|
<Visitor>true</Visitor>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<Listener>false</Listener>
|
|
</Antlr4>
|
|
<Antlr4 Include="Grammar\GhostShaderParser.g4">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<Listener>false</Listener>
|
|
<Visitor>true</Visitor>
|
|
</Antlr4>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../../Runtime/Ghost.Core/Ghost.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|