Commit 35b1429
committed
Updated submodules (archiver and packager improvements)
1 parent 4461ce0 commit 35b1429
6 files changed
Lines changed: 8 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
| 101 | + | |
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
| |||
Submodule DiligentCore updated 66 files
- .github/workflows/uwp.yml+1-1
- .github/workflows/windows.yml+3-3
- Common/interface/FixedLinearAllocator.hpp+7-3
- Graphics/Archiver/include/SerializationDeviceImpl.hpp+5-8
- Graphics/Archiver/include/SerializedPipelineStateImpl.hpp+6-4
- Graphics/Archiver/include/SerializedShaderImpl.hpp+16-10
- Graphics/Archiver/interface/ArchiverFactory.h+11-2
- Graphics/Archiver/interface/SerializedPipelineState.h+18-2
- Graphics/Archiver/src/ArchiverFactory.cpp+6
- Graphics/Archiver/src/Archiver_D3D11.cpp+3-2
- Graphics/Archiver/src/Archiver_D3D12.cpp+3-2
- Graphics/Archiver/src/Archiver_GL.cpp+26-38
- Graphics/Archiver/src/Archiver_Inc.hpp+5-22
- Graphics/Archiver/src/Archiver_Mtl.mm+70-47
- Graphics/Archiver/src/Archiver_Vk.cpp+3-2
- Graphics/Archiver/src/SerializationDeviceImpl.cpp+9-6
- Graphics/Archiver/src/SerializedPipelineStateImpl.cpp+53-12
- Graphics/Archiver/src/SerializedRenderPassImpl.cpp+3
- Graphics/Archiver/src/SerializedResourceSignatureImpl.cpp+3
- Graphics/Archiver/src/SerializedShaderImpl.cpp+25-31
- Graphics/GraphicsAccessories/interface/GraphicsAccessories.hpp+3
- Graphics/GraphicsAccessories/src/GraphicsAccessories.cpp+21
- Graphics/GraphicsEngine/include/EngineFactoryBase.hpp+5
- Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp+2-1
- Graphics/GraphicsEngine/interface/EngineFactory.h+9
- Graphics/GraphicsEngine/interface/GraphicsTypes.h-4
- Graphics/GraphicsEngine/src/PipelineResourceSignatureBase.cpp+5-3
- Graphics/GraphicsEngineD3D11/src/EngineFactoryD3D11.cpp-6
- Graphics/GraphicsEngineD3D12/src/EngineFactoryD3D12.cpp-6
- Graphics/GraphicsEngineOpenGL/src/EngineFactoryOpenGL.cpp-6
- Graphics/GraphicsEngineOpenGL/src/ShaderGLImpl.cpp+5-5
- Graphics/GraphicsEngineVulkan/src/EngineFactoryVk.cpp-6
- Graphics/GraphicsEngineVulkan/src/ShaderVkImpl.cpp+9-11
- Graphics/GraphicsTools/src/BytecodeCache.cpp+2-2
- Graphics/ShaderTools/include/GLSLUtils.hpp+1-1
- Graphics/ShaderTools/include/HLSLUtils.hpp+1-1
- Graphics/ShaderTools/include/ShaderToolsCommon.hpp+33-11
- Graphics/ShaderTools/src/GLSLUtils.cpp+5-8
- Graphics/ShaderTools/src/GLSLangUtils.cpp+4-7
- Graphics/ShaderTools/src/HLSLUtils.cpp+1-1
- Graphics/ShaderTools/src/ShaderToolsCommon.cpp+122-73
- Platforms/Android/CMakeLists.txt+8-2
- Platforms/Apple/CMakeLists.txt+8-2
- Platforms/Apple/src/AppleFileSystem.cpp+12-4
- Platforms/Basic/interface/BasicFileSystem.hpp+2-4
- Platforms/Basic/src/BasicFileSystem.cpp+10-17
- Platforms/Emscripten/CMakeLists.txt+8-2
- Platforms/Linux/CMakeLists.txt+2-2
- Platforms/Linux/src/LinuxFileSystem.cpp+12-4
- Tests/DiligentCoreAPITest/assets/shaders/ArchiveTest.csh-13
- Tests/DiligentCoreAPITest/assets/shaders/Archiver/Common.h+14
- Tests/DiligentCoreAPITest/assets/shaders/Archiver/PixelShader.psh+17
- Tests/DiligentCoreAPITest/assets/shaders/Archiver/VertexShader.vsh+16
- Tests/DiligentCoreAPITest/src/ArchiveTest.cpp+132-75
- Tests/DiligentCoreTest/assets/shaders/ShaderPreprocessor/.gitattributes+1
- Tests/DiligentCoreTest/assets/shaders/ShaderPreprocessor/IncludeBasicTest.hlsl+1-1
- Tests/DiligentCoreTest/assets/shaders/ShaderPreprocessor/InlineIncludeShaderCommon0.hlsl+1
- Tests/DiligentCoreTest/assets/shaders/ShaderPreprocessor/InlineIncludeShaderCommon1.hlsl+3
- Tests/DiligentCoreTest/assets/shaders/ShaderPreprocessor/InlineIncludeShaderCommon2.hlsl+5
- Tests/DiligentCoreTest/assets/shaders/ShaderPreprocessor/InlineIncludeShaderTest.hlsl+7
- Tests/DiligentCoreTest/src/ShaderTools/ShaderPreprocessTest.cpp+45-10
- Tests/GPUTestFramework/include/TestingEnvironment.hpp+2-2
- Tests/GPUTestFramework/src/TestingEnvironment.cpp+18-16
- Tests/IncludeTest/Archiver/ArchiverFactoryH_test.c+1
- Tests/IncludeTest/Archiver/SerializedPipelineStateH_test.c+2
- Tests/IncludeTest/GraphicsEngine/EngineFactoryH_test.c+5
Submodule DiligentTools updated 9 files
- .github/workflows/uwp.yml+1-1
- .github/workflows/windows.yml+3-3
- RenderStatePackager/CMakeLists.txt+1
- RenderStatePackager/README.md+12-8
- RenderStatePackager/include/ParsingEnvironment.hpp+1
- RenderStatePackager/include/RenderStatePackager.hpp+1-1
- RenderStatePackager/src/ParsingEnvironment.cpp+3-1
- RenderStatePackager/src/RenderStatePackager.cpp+142-1
- RenderStatePackager/src/main.cpp+3-1
0 commit comments