gitextract_j6n7_r9v/ ├── CMakeLists.txt ├── CONTRIBUTING.md ├── DxbcParser/ │ ├── CMakeLists.txt │ ├── include/ │ │ ├── BlobContainer.h │ │ ├── DXBCUtils.h │ │ └── pch.h │ └── src/ │ ├── BlobContainer.cpp │ └── DXBCUtils.cpp ├── LICENSE ├── README.md ├── SECURITY.md ├── external/ │ ├── MicrosoftTelemetry.h │ ├── d3d12compatibility.h │ └── d3dx12.h ├── include/ │ ├── Allocator.h │ ├── BatchedContext.hpp │ ├── BatchedQuery.hpp │ ├── BatchedResource.hpp │ ├── BlitHelper.hpp │ ├── BlitHelperShaders.h │ ├── BlockAllocators.h │ ├── BlockAllocators.inl │ ├── CommandListManager.hpp │ ├── D3D12TranslationLayerDependencyIncludes.h │ ├── D3D12TranslationLayerIncludes.h │ ├── DXGIColorSpaceHelper.h │ ├── DeviceChild.hpp │ ├── DxbcBuilder.hpp │ ├── Fence.hpp │ ├── FormatDesc.hpp │ ├── ImmediateContext.hpp │ ├── ImmediateContext.inl │ ├── MaxFrameLatencyHelper.hpp │ ├── PipelineState.hpp │ ├── PrecompiledShaders.h │ ├── Query.hpp │ ├── Residency.h │ ├── Resource.hpp │ ├── ResourceBinding.hpp │ ├── ResourceCache.hpp │ ├── ResourceState.hpp │ ├── RootSignature.hpp │ ├── Sampler.hpp │ ├── Sampler.inl │ ├── Shader.hpp │ ├── Shader.inl │ ├── ShaderBinary.h │ ├── SharedResourceHelpers.hpp │ ├── SubresourceHelpers.hpp │ ├── SwapChainHelper.hpp │ ├── SwapChainManager.hpp │ ├── ThreadPool.hpp │ ├── Util.hpp │ ├── VideoDecode.hpp │ ├── VideoDecodeStatistics.hpp │ ├── VideoDevice.hpp │ ├── VideoProcess.hpp │ ├── VideoProcessEnum.hpp │ ├── VideoProcessShaders.h │ ├── VideoReferenceDataManager.hpp │ ├── VideoViewHelper.hpp │ ├── View.hpp │ ├── View.inl │ ├── XPlatHelpers.h │ ├── commandlistmanager.inl │ ├── pch.h │ └── segmented_stack.h ├── packages.config ├── scripts/ │ ├── BlitHelperShaders.hlsl │ ├── CompileBlitHelperShaders.cmd │ ├── CompileVideoProcessShaders.cmd │ └── DeinterlaceShader.hlsl └── src/ ├── Allocator.cpp ├── BatchedContext.cpp ├── BlitHelper.cpp ├── CMakeLists.txt ├── ColorConvertHelper.cpp ├── CommandListManager.cpp ├── DeviceChild.cpp ├── DxbcBuilder.cpp ├── Fence.cpp ├── FormatDescImpl.cpp ├── ImmediateContext.cpp ├── Main.cpp ├── MaxFrameLatencyHelper.cpp ├── PipelineState.cpp ├── Query.cpp ├── Residency.cpp ├── Resource.cpp ├── ResourceBinding.cpp ├── ResourceCache.cpp ├── ResourceState.cpp ├── RootSignature.cpp ├── Shader.cpp ├── ShaderBinary.cpp ├── ShaderParser.cpp ├── SharedResourceHelpers.cpp ├── SubresourceHelpers.cpp ├── SwapChainHelper.cpp ├── SwapChainManager.cpp ├── Util.cpp ├── VideoDecode.cpp ├── VideoDecodeStatistics.cpp ├── VideoDevice.cpp ├── VideoProcess.cpp ├── VideoProcessEnum.cpp ├── VideoReferenceDataManager.cpp └── View.cpp