├── .azuredevops ├── pipelines │ ├── DirectXTK12-GitHub-CMake-Dev17.yml │ ├── DirectXTK12-GitHub-CMake.yml │ ├── DirectXTK12-GitHub-Dev17.yml │ ├── DirectXTK12-GitHub-GDK-Dev17.yml │ ├── DirectXTK12-GitHub-GDK.yml │ ├── DirectXTK12-GitHub-MinGW.yml │ ├── DirectXTK12-GitHub-SDK-prerelease.yml │ ├── DirectXTK12-GitHub-SDK-release.yml │ ├── DirectXTK12-GitHub-Test-Dev17.yml │ ├── DirectXTK12-GitHub-Test.yml │ ├── DirectXTK12-GitHub.yml │ ├── DirectXTK12-OneFuzz-Coverage.yml │ ├── DirectXTK12-OneFuzz-Meshes.yml │ ├── DirectXTK12-OneFuzz.yml │ └── DirectXTK12-SDL.yml ├── policies │ └── approvercountpolicy.yml └── templates │ ├── DirectXTK12-build-gdk.yml │ ├── DirectXTK12-build-gdkx.yml │ ├── DirectXTK12-build-uwp-arm64.yml │ ├── DirectXTK12-build-uwp.yml │ ├── DirectXTK12-build-win32.yml │ └── DirectXTK12-setup-gdk-auto.yml ├── .editorconfig ├── .gitattributes ├── .github ├── copilot-instructions.md ├── dependabot.yml ├── linters │ ├── .editorconfig-checker.json │ ├── .markdown-lint.yml │ ├── .powershell-psscriptanalyzer.psd1 │ ├── .yaml-lint.yml │ └── actionlint.yml └── workflows │ ├── arm64.yml │ ├── arm64bvt.yml │ ├── bvt.yml │ ├── codeql.yml │ ├── lint.yml │ ├── main.yml │ ├── msbuild.yml │ ├── msvc.yml │ ├── test.yml │ ├── uwp.yml │ └── vcpkg.yml ├── .gitignore ├── .nuget ├── directxtk12_desktop_2019.nuspec ├── directxtk12_desktop_2019.targets ├── directxtk12_desktop_win10.nuspec ├── directxtk12_desktop_win10.targets ├── directxtk12_uwp.nuspec ├── directxtk12_uwp.targets └── icon.jpg ├── .onefuzz ├── Audio ├── AudioEngine.cpp ├── DynamicSoundEffectInstance.cpp ├── SoundCommon.cpp ├── SoundCommon.h ├── SoundEffect.cpp ├── SoundEffectInstance.cpp ├── SoundStreamInstance.cpp ├── WAVFileReader.cpp ├── WAVFileReader.h ├── WaveBank.cpp ├── WaveBankReader.cpp └── WaveBankReader.h ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── DirectXTK_Desktop_2019_Win10.sln ├── DirectXTK_Desktop_2019_Win10.vcxproj ├── DirectXTK_Desktop_2019_Win10.vcxproj.filters ├── DirectXTK_Desktop_2022_Win10.sln ├── DirectXTK_Desktop_2022_Win10.vcxproj ├── DirectXTK_Desktop_2022_Win10.vcxproj.filters ├── DirectXTK_GDKX_2022.sln ├── DirectXTK_GDKX_2022.vcxproj ├── DirectXTK_GDKX_2022.vcxproj.filters ├── DirectXTK_GDK_2019.sln ├── DirectXTK_GDK_2019.vcxproj ├── DirectXTK_GDK_2019.vcxproj.filters ├── DirectXTK_GDK_2022.sln ├── DirectXTK_GDK_2022.vcxproj ├── DirectXTK_GDK_2022.vcxproj.filters ├── DirectXTK_Windows10_2022.sln ├── DirectXTK_Windows10_2022.vcxproj ├── DirectXTK_Windows10_2022.vcxproj.filters ├── Inc ├── Audio.h ├── BufferHelpers.h ├── CommonStates.h ├── DDSTextureLoader.h ├── DescriptorHeap.h ├── DirectXHelpers.h ├── EffectPipelineStateDescription.h ├── Effects.h ├── GamePad.h ├── GeometricPrimitive.h ├── GraphicsMemory.h ├── Keyboard.h ├── Model.h ├── Mouse.h ├── PostProcess.h ├── PrimitiveBatch.h ├── RenderTargetState.h ├── ResourceUploadBatch.h ├── ScreenGrab.h ├── SimpleMath.h ├── SimpleMath.inl ├── SpriteBatch.h ├── SpriteFont.h ├── VertexTypes.h ├── WICTextureLoader.h └── XboxDDSTextureLoader.h ├── LICENSE ├── README.md ├── SECURITY.md └── Src ├── AlignedNew.h ├── AlphaTestEffect.cpp ├── BasicEffect.cpp ├── BasicPostProcess.cpp ├── Bezier.h ├── BinaryReader.cpp ├── BinaryReader.h ├── BufferHelpers.cpp ├── CMO.h ├── CommonStates.cpp ├── DDS.h ├── DDSTextureLoader.cpp ├── DebugEffect.cpp ├── DemandCreate.h ├── DescriptorHeap.cpp ├── DirectXHelpers.cpp ├── DualPostProcess.cpp ├── DualTextureEffect.cpp ├── EffectCommon.cpp ├── EffectCommon.h ├── EffectFactory.cpp ├── EffectPipelineStateDescription.cpp ├── EffectTextureFactory.cpp ├── EnvironmentMapEffect.cpp ├── GamePad.cpp ├── GeometricPrimitive.cpp ├── Geometry.cpp ├── Geometry.h ├── GraphicsMemory.cpp ├── Keyboard.cpp ├── LinearAllocator.cpp ├── LinearAllocator.h ├── LoaderHelpers.h ├── Model.cpp ├── ModelLoadCMO.cpp ├── ModelLoadSDKMESH.cpp ├── ModelLoadVBO.cpp ├── Mouse.cpp ├── NormalMapEffect.cpp ├── PBREffect.cpp ├── PBREffectFactory.cpp ├── PlatformHelpers.h ├── PrimitiveBatch.cpp ├── ResourceUploadBatch.cpp ├── SDKMesh.h ├── ScreenGrab.cpp ├── Shaders ├── AlphaTestEffect.fx ├── BasicEffect.fx ├── Common.fxh ├── CompileShaders.cmd ├── DebugEffect.fx ├── DualTextureEffect.fx ├── EnvironmentMapEffect.fx ├── GenerateMips.hlsl ├── Lighting.fxh ├── NormalMapEffect.fx ├── PBRCommon.fxh ├── PBREffect.fx ├── PixelPacking_Velocity.hlsli ├── PostProcess.fx ├── RootSig.fxh ├── SkinnedEffect.fx ├── Skinning.fxh ├── SpriteEffect.fx ├── Structures.fxh ├── ToneMap.fx └── Utilities.fxh ├── SharedResourcePool.h ├── SimpleMath.cpp ├── SkinnedEffect.cpp ├── SpriteBatch.cpp ├── SpriteFont.cpp ├── TeapotData.inc ├── ToneMapPostProcess.cpp ├── VertexTypes.cpp ├── WICTextureLoader.cpp ├── XboxDDSTextureLoader.cpp ├── d3dx12.h ├── pch.cpp ├── pch.h └── vbo.h /.azuredevops/pipelines/DirectXTK12-GitHub-CMake-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-CMake-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-CMake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-CMake.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-GDK-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-GDK-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-GDK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-GDK.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-MinGW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-MinGW.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-SDK-prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-SDK-prerelease.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-SDK-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-SDK-release.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-Test-Dev17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-Test-Dev17.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub-Test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub-Test.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-GitHub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-GitHub.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-OneFuzz-Coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-OneFuzz-Coverage.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-OneFuzz-Meshes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-OneFuzz-Meshes.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-OneFuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-OneFuzz.yml -------------------------------------------------------------------------------- /.azuredevops/pipelines/DirectXTK12-SDL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/pipelines/DirectXTK12-SDL.yml -------------------------------------------------------------------------------- /.azuredevops/policies/approvercountpolicy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/policies/approvercountpolicy.yml -------------------------------------------------------------------------------- /.azuredevops/templates/DirectXTK12-build-gdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/templates/DirectXTK12-build-gdk.yml -------------------------------------------------------------------------------- /.azuredevops/templates/DirectXTK12-build-gdkx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/templates/DirectXTK12-build-gdkx.yml -------------------------------------------------------------------------------- /.azuredevops/templates/DirectXTK12-build-uwp-arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/templates/DirectXTK12-build-uwp-arm64.yml -------------------------------------------------------------------------------- /.azuredevops/templates/DirectXTK12-build-uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/templates/DirectXTK12-build-uwp.yml -------------------------------------------------------------------------------- /.azuredevops/templates/DirectXTK12-build-win32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/templates/DirectXTK12-build-win32.yml -------------------------------------------------------------------------------- /.azuredevops/templates/DirectXTK12-setup-gdk-auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.azuredevops/templates/DirectXTK12-setup-gdk-auto.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.editorconfig-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/linters/.editorconfig-checker.json -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.powershell-psscriptanalyzer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/linters/.powershell-psscriptanalyzer.psd1 -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/linters/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/linters/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/arm64.yml -------------------------------------------------------------------------------- /.github/workflows/arm64bvt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/arm64bvt.yml -------------------------------------------------------------------------------- /.github/workflows/bvt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/bvt.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.github/workflows/msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/msvc.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/uwp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/uwp.yml -------------------------------------------------------------------------------- /.github/workflows/vcpkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.github/workflows/vcpkg.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/directxtk12_desktop_2019.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/directxtk12_desktop_2019.nuspec -------------------------------------------------------------------------------- /.nuget/directxtk12_desktop_2019.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/directxtk12_desktop_2019.targets -------------------------------------------------------------------------------- /.nuget/directxtk12_desktop_win10.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/directxtk12_desktop_win10.nuspec -------------------------------------------------------------------------------- /.nuget/directxtk12_desktop_win10.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/directxtk12_desktop_win10.targets -------------------------------------------------------------------------------- /.nuget/directxtk12_uwp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/directxtk12_uwp.nuspec -------------------------------------------------------------------------------- /.nuget/directxtk12_uwp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/directxtk12_uwp.targets -------------------------------------------------------------------------------- /.nuget/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/.nuget/icon.jpg -------------------------------------------------------------------------------- /.onefuzz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Audio/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/AudioEngine.cpp -------------------------------------------------------------------------------- /Audio/DynamicSoundEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/DynamicSoundEffectInstance.cpp -------------------------------------------------------------------------------- /Audio/SoundCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/SoundCommon.cpp -------------------------------------------------------------------------------- /Audio/SoundCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/SoundCommon.h -------------------------------------------------------------------------------- /Audio/SoundEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/SoundEffect.cpp -------------------------------------------------------------------------------- /Audio/SoundEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/SoundEffectInstance.cpp -------------------------------------------------------------------------------- /Audio/SoundStreamInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/SoundStreamInstance.cpp -------------------------------------------------------------------------------- /Audio/WAVFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/WAVFileReader.cpp -------------------------------------------------------------------------------- /Audio/WAVFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/WAVFileReader.h -------------------------------------------------------------------------------- /Audio/WaveBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/WaveBank.cpp -------------------------------------------------------------------------------- /Audio/WaveBankReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/WaveBankReader.cpp -------------------------------------------------------------------------------- /Audio/WaveBankReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Audio/WaveBankReader.h -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DirectXTK_Desktop_2019_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Desktop_2019_Win10.sln -------------------------------------------------------------------------------- /DirectXTK_Desktop_2019_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Desktop_2019_Win10.vcxproj -------------------------------------------------------------------------------- /DirectXTK_Desktop_2019_Win10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Desktop_2019_Win10.vcxproj.filters -------------------------------------------------------------------------------- /DirectXTK_Desktop_2022_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Desktop_2022_Win10.sln -------------------------------------------------------------------------------- /DirectXTK_Desktop_2022_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Desktop_2022_Win10.vcxproj -------------------------------------------------------------------------------- /DirectXTK_Desktop_2022_Win10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Desktop_2022_Win10.vcxproj.filters -------------------------------------------------------------------------------- /DirectXTK_GDKX_2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDKX_2022.sln -------------------------------------------------------------------------------- /DirectXTK_GDKX_2022.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDKX_2022.vcxproj -------------------------------------------------------------------------------- /DirectXTK_GDKX_2022.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDKX_2022.vcxproj.filters -------------------------------------------------------------------------------- /DirectXTK_GDK_2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDK_2019.sln -------------------------------------------------------------------------------- /DirectXTK_GDK_2019.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDK_2019.vcxproj -------------------------------------------------------------------------------- /DirectXTK_GDK_2019.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDK_2019.vcxproj.filters -------------------------------------------------------------------------------- /DirectXTK_GDK_2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDK_2022.sln -------------------------------------------------------------------------------- /DirectXTK_GDK_2022.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDK_2022.vcxproj -------------------------------------------------------------------------------- /DirectXTK_GDK_2022.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_GDK_2022.vcxproj.filters -------------------------------------------------------------------------------- /DirectXTK_Windows10_2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Windows10_2022.sln -------------------------------------------------------------------------------- /DirectXTK_Windows10_2022.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Windows10_2022.vcxproj -------------------------------------------------------------------------------- /DirectXTK_Windows10_2022.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/DirectXTK_Windows10_2022.vcxproj.filters -------------------------------------------------------------------------------- /Inc/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/Audio.h -------------------------------------------------------------------------------- /Inc/BufferHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/BufferHelpers.h -------------------------------------------------------------------------------- /Inc/CommonStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/CommonStates.h -------------------------------------------------------------------------------- /Inc/DDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/DDSTextureLoader.h -------------------------------------------------------------------------------- /Inc/DescriptorHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/DescriptorHeap.h -------------------------------------------------------------------------------- /Inc/DirectXHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/DirectXHelpers.h -------------------------------------------------------------------------------- /Inc/EffectPipelineStateDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/EffectPipelineStateDescription.h -------------------------------------------------------------------------------- /Inc/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/Effects.h -------------------------------------------------------------------------------- /Inc/GamePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/GamePad.h -------------------------------------------------------------------------------- /Inc/GeometricPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/GeometricPrimitive.h -------------------------------------------------------------------------------- /Inc/GraphicsMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/GraphicsMemory.h -------------------------------------------------------------------------------- /Inc/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/Keyboard.h -------------------------------------------------------------------------------- /Inc/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/Model.h -------------------------------------------------------------------------------- /Inc/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/Mouse.h -------------------------------------------------------------------------------- /Inc/PostProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/PostProcess.h -------------------------------------------------------------------------------- /Inc/PrimitiveBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/PrimitiveBatch.h -------------------------------------------------------------------------------- /Inc/RenderTargetState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/RenderTargetState.h -------------------------------------------------------------------------------- /Inc/ResourceUploadBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/ResourceUploadBatch.h -------------------------------------------------------------------------------- /Inc/ScreenGrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/ScreenGrab.h -------------------------------------------------------------------------------- /Inc/SimpleMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/SimpleMath.h -------------------------------------------------------------------------------- /Inc/SimpleMath.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/SimpleMath.inl -------------------------------------------------------------------------------- /Inc/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/SpriteBatch.h -------------------------------------------------------------------------------- /Inc/SpriteFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/SpriteFont.h -------------------------------------------------------------------------------- /Inc/VertexTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/VertexTypes.h -------------------------------------------------------------------------------- /Inc/WICTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/WICTextureLoader.h -------------------------------------------------------------------------------- /Inc/XboxDDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Inc/XboxDDSTextureLoader.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Src/AlignedNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/AlignedNew.h -------------------------------------------------------------------------------- /Src/AlphaTestEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/AlphaTestEffect.cpp -------------------------------------------------------------------------------- /Src/BasicEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/BasicEffect.cpp -------------------------------------------------------------------------------- /Src/BasicPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/BasicPostProcess.cpp -------------------------------------------------------------------------------- /Src/Bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Bezier.h -------------------------------------------------------------------------------- /Src/BinaryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/BinaryReader.cpp -------------------------------------------------------------------------------- /Src/BinaryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/BinaryReader.h -------------------------------------------------------------------------------- /Src/BufferHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/BufferHelpers.cpp -------------------------------------------------------------------------------- /Src/CMO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/CMO.h -------------------------------------------------------------------------------- /Src/CommonStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/CommonStates.cpp -------------------------------------------------------------------------------- /Src/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DDS.h -------------------------------------------------------------------------------- /Src/DDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DDSTextureLoader.cpp -------------------------------------------------------------------------------- /Src/DebugEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DebugEffect.cpp -------------------------------------------------------------------------------- /Src/DemandCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DemandCreate.h -------------------------------------------------------------------------------- /Src/DescriptorHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DescriptorHeap.cpp -------------------------------------------------------------------------------- /Src/DirectXHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DirectXHelpers.cpp -------------------------------------------------------------------------------- /Src/DualPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DualPostProcess.cpp -------------------------------------------------------------------------------- /Src/DualTextureEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/DualTextureEffect.cpp -------------------------------------------------------------------------------- /Src/EffectCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/EffectCommon.cpp -------------------------------------------------------------------------------- /Src/EffectCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/EffectCommon.h -------------------------------------------------------------------------------- /Src/EffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/EffectFactory.cpp -------------------------------------------------------------------------------- /Src/EffectPipelineStateDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/EffectPipelineStateDescription.cpp -------------------------------------------------------------------------------- /Src/EffectTextureFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/EffectTextureFactory.cpp -------------------------------------------------------------------------------- /Src/EnvironmentMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/EnvironmentMapEffect.cpp -------------------------------------------------------------------------------- /Src/GamePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/GamePad.cpp -------------------------------------------------------------------------------- /Src/GeometricPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/GeometricPrimitive.cpp -------------------------------------------------------------------------------- /Src/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Geometry.cpp -------------------------------------------------------------------------------- /Src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Geometry.h -------------------------------------------------------------------------------- /Src/GraphicsMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/GraphicsMemory.cpp -------------------------------------------------------------------------------- /Src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Keyboard.cpp -------------------------------------------------------------------------------- /Src/LinearAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/LinearAllocator.cpp -------------------------------------------------------------------------------- /Src/LinearAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/LinearAllocator.h -------------------------------------------------------------------------------- /Src/LoaderHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/LoaderHelpers.h -------------------------------------------------------------------------------- /Src/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Model.cpp -------------------------------------------------------------------------------- /Src/ModelLoadCMO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/ModelLoadCMO.cpp -------------------------------------------------------------------------------- /Src/ModelLoadSDKMESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/ModelLoadSDKMESH.cpp -------------------------------------------------------------------------------- /Src/ModelLoadVBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/ModelLoadVBO.cpp -------------------------------------------------------------------------------- /Src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Mouse.cpp -------------------------------------------------------------------------------- /Src/NormalMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/NormalMapEffect.cpp -------------------------------------------------------------------------------- /Src/PBREffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/PBREffect.cpp -------------------------------------------------------------------------------- /Src/PBREffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/PBREffectFactory.cpp -------------------------------------------------------------------------------- /Src/PlatformHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/PlatformHelpers.h -------------------------------------------------------------------------------- /Src/PrimitiveBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/PrimitiveBatch.cpp -------------------------------------------------------------------------------- /Src/ResourceUploadBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/ResourceUploadBatch.cpp -------------------------------------------------------------------------------- /Src/SDKMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/SDKMesh.h -------------------------------------------------------------------------------- /Src/ScreenGrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/ScreenGrab.cpp -------------------------------------------------------------------------------- /Src/Shaders/AlphaTestEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/AlphaTestEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/BasicEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/BasicEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/Common.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/Common.fxh -------------------------------------------------------------------------------- /Src/Shaders/CompileShaders.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/CompileShaders.cmd -------------------------------------------------------------------------------- /Src/Shaders/DebugEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/DebugEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/DualTextureEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/DualTextureEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/EnvironmentMapEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/EnvironmentMapEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/GenerateMips.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/GenerateMips.hlsl -------------------------------------------------------------------------------- /Src/Shaders/Lighting.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/Lighting.fxh -------------------------------------------------------------------------------- /Src/Shaders/NormalMapEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/NormalMapEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/PBRCommon.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/PBRCommon.fxh -------------------------------------------------------------------------------- /Src/Shaders/PBREffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/PBREffect.fx -------------------------------------------------------------------------------- /Src/Shaders/PixelPacking_Velocity.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/PixelPacking_Velocity.hlsli -------------------------------------------------------------------------------- /Src/Shaders/PostProcess.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/PostProcess.fx -------------------------------------------------------------------------------- /Src/Shaders/RootSig.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/RootSig.fxh -------------------------------------------------------------------------------- /Src/Shaders/SkinnedEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/SkinnedEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/Skinning.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/Skinning.fxh -------------------------------------------------------------------------------- /Src/Shaders/SpriteEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/SpriteEffect.fx -------------------------------------------------------------------------------- /Src/Shaders/Structures.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/Structures.fxh -------------------------------------------------------------------------------- /Src/Shaders/ToneMap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/ToneMap.fx -------------------------------------------------------------------------------- /Src/Shaders/Utilities.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/Shaders/Utilities.fxh -------------------------------------------------------------------------------- /Src/SharedResourcePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/SharedResourcePool.h -------------------------------------------------------------------------------- /Src/SimpleMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/SimpleMath.cpp -------------------------------------------------------------------------------- /Src/SkinnedEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/SkinnedEffect.cpp -------------------------------------------------------------------------------- /Src/SpriteBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/SpriteBatch.cpp -------------------------------------------------------------------------------- /Src/SpriteFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/SpriteFont.cpp -------------------------------------------------------------------------------- /Src/TeapotData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/TeapotData.inc -------------------------------------------------------------------------------- /Src/ToneMapPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/ToneMapPostProcess.cpp -------------------------------------------------------------------------------- /Src/VertexTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/VertexTypes.cpp -------------------------------------------------------------------------------- /Src/WICTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/WICTextureLoader.cpp -------------------------------------------------------------------------------- /Src/XboxDDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/XboxDDSTextureLoader.cpp -------------------------------------------------------------------------------- /Src/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/d3dx12.h -------------------------------------------------------------------------------- /Src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/pch.cpp -------------------------------------------------------------------------------- /Src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/pch.h -------------------------------------------------------------------------------- /Src/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/DirectXTK12/HEAD/Src/vbo.h --------------------------------------------------------------------------------