├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── example ├── 1.png ├── 2.png ├── 3.png ├── CMakeLists.txt ├── fxaa_output.png ├── lib │ └── DirectXTK │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .nuget │ │ ├── directxtk_desktop_2017.nuspec │ │ ├── directxtk_desktop_2017.targets │ │ ├── directxtk_desktop_win10.nuspec │ │ ├── directxtk_desktop_win10.targets │ │ ├── directxtk_uwp.nuspec │ │ ├── directxtk_uwp.targets │ │ ├── icon.jpg │ │ ├── signconfig_desktop.xml │ │ ├── signconfig_uwp.xml │ │ └── versioninfo.ps1 │ │ ├── Audio │ │ ├── AudioEngine.cpp │ │ ├── DirectXTKAudio_Desktop_2017_DXSDK.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_DXSDK.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2017_Win7.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_Win7.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2017_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_Win8.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2019_Win7.vcxproj │ │ ├── DirectXTKAudio_Desktop_2019_Win7.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2019_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2019_Win8.vcxproj.filters │ │ ├── DynamicSoundEffectInstance.cpp │ │ ├── SoundCommon.cpp │ │ ├── SoundCommon.h │ │ ├── SoundEffect.cpp │ │ ├── SoundEffectInstance.cpp │ │ ├── SoundStreamInstance.cpp │ │ ├── WAVFileReader.cpp │ │ ├── WAVFileReader.h │ │ ├── WaveBank.cpp │ │ ├── WaveBankReader.cpp │ │ ├── WaveBankReader.h │ │ └── packages.config │ │ ├── CMakeLists.txt │ │ ├── CMakeSettings.json │ │ ├── DirectXTK_Desktop_2017.sln │ │ ├── DirectXTK_Desktop_2017.vcxproj │ │ ├── DirectXTK_Desktop_2017.vcxproj.filters │ │ ├── DirectXTK_Desktop_2017_DXSDK.sln │ │ ├── DirectXTK_Desktop_2017_Win10.sln │ │ ├── DirectXTK_Desktop_2017_Win10.vcxproj │ │ ├── DirectXTK_Desktop_2017_Win10.vcxproj.filters │ │ ├── DirectXTK_Desktop_2017_Win7.sln │ │ ├── DirectXTK_Desktop_2019.sln │ │ ├── DirectXTK_Desktop_2019.vcxproj │ │ ├── DirectXTK_Desktop_2019.vcxproj.filters │ │ ├── DirectXTK_Desktop_2019_Win10.sln │ │ ├── DirectXTK_Desktop_2019_Win10.vcxproj │ │ ├── DirectXTK_Desktop_2019_Win10.vcxproj.filters │ │ ├── DirectXTK_Desktop_2019_Win7.sln │ │ ├── DirectXTK_Windows10_2017.sln │ │ ├── DirectXTK_Windows10_2017.vcxproj │ │ ├── DirectXTK_Windows10_2017.vcxproj.filters │ │ ├── DirectXTK_Windows10_2019.sln │ │ ├── DirectXTK_Windows10_2019.vcxproj │ │ ├── DirectXTK_Windows10_2019.vcxproj.filters │ │ ├── DirectXTK_XboxOneXDK_2017.sln │ │ ├── DirectXTK_XboxOneXDK_2017.vcxproj │ │ ├── DirectXTK_XboxOneXDK_2017.vcxproj.filters │ │ ├── HISTORY.md │ │ ├── Inc │ │ ├── Audio.h │ │ ├── CommonStates.h │ │ ├── DDSTextureLoader.h │ │ ├── DirectXHelpers.h │ │ ├── Effects.h │ │ ├── GamePad.h │ │ ├── GeometricPrimitive.h │ │ ├── GraphicsMemory.h │ │ ├── Keyboard.h │ │ ├── Model.h │ │ ├── Mouse.h │ │ ├── PostProcess.h │ │ ├── PrimitiveBatch.h │ │ ├── ScreenGrab.h │ │ ├── SimpleMath.h │ │ ├── SimpleMath.inl │ │ ├── SpriteBatch.h │ │ ├── SpriteFont.h │ │ ├── VertexTypes.h │ │ ├── WICTextureLoader.h │ │ └── XboxDDSTextureLoader.h │ │ ├── LICENSE │ │ ├── MakeSpriteFont │ │ ├── BitmapImporter.cs │ │ ├── BitmapUtils.cs │ │ ├── CharacterRegion.cs │ │ ├── CommandLineOptions.cs │ │ ├── CommandLineParser.cs │ │ ├── Glyph.cs │ │ ├── GlyphCropper.cs │ │ ├── GlyphPacker.cs │ │ ├── IFontImporter.cs │ │ ├── MakeSpriteFont.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SpriteFontWriter.cs │ │ └── TrueTypeImporter.cs │ │ ├── README.md │ │ ├── Src │ │ ├── AlignedNew.h │ │ ├── AlphaTestEffect.cpp │ │ ├── BasicEffect.cpp │ │ ├── BasicPostProcess.cpp │ │ ├── Bezier.h │ │ ├── BinaryReader.cpp │ │ ├── BinaryReader.h │ │ ├── CommonStates.cpp │ │ ├── ConstantBuffer.h │ │ ├── DDS.h │ │ ├── DDSTextureLoader.cpp │ │ ├── DGSLEffect.cpp │ │ ├── DGSLEffectFactory.cpp │ │ ├── DebugEffect.cpp │ │ ├── DemandCreate.h │ │ ├── DualPostProcess.cpp │ │ ├── DualTextureEffect.cpp │ │ ├── EffectCommon.cpp │ │ ├── EffectCommon.h │ │ ├── EffectFactory.cpp │ │ ├── EnvironmentMapEffect.cpp │ │ ├── GamePad.cpp │ │ ├── GeometricPrimitive.cpp │ │ ├── Geometry.cpp │ │ ├── Geometry.h │ │ ├── GraphicsMemory.cpp │ │ ├── Keyboard.cpp │ │ ├── LoaderHelpers.h │ │ ├── Model.cpp │ │ ├── ModelLoadCMO.cpp │ │ ├── ModelLoadSDKMESH.cpp │ │ ├── ModelLoadVBO.cpp │ │ ├── Mouse.cpp │ │ ├── NormalMapEffect.cpp │ │ ├── PBREffect.cpp │ │ ├── PBREffectFactory.cpp │ │ ├── PlatformHelpers.h │ │ ├── PrimitiveBatch.cpp │ │ ├── SDKMesh.h │ │ ├── ScreenGrab.cpp │ │ ├── Shaders │ │ │ ├── AlphaTestEffect.fx │ │ │ ├── BasicEffect.fx │ │ │ ├── Common.fxh │ │ │ ├── CompileShaders.cmd │ │ │ ├── Compiled │ │ │ │ ├── AlphaTestEffect_PSAlphaTestEqNe.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestEqNe.pdb │ │ │ │ ├── AlphaTestEffect_PSAlphaTestEqNeNoFog.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestEqNeNoFog.pdb │ │ │ │ ├── AlphaTestEffect_PSAlphaTestLtGt.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestLtGt.pdb │ │ │ │ ├── AlphaTestEffect_PSAlphaTestLtGtNoFog.inc │ │ │ │ ├── AlphaTestEffect_PSAlphaTestLtGtNoFog.pdb │ │ │ │ ├── AlphaTestEffect_VSAlphaTest.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTest.pdb │ │ │ │ ├── AlphaTestEffect_VSAlphaTestNoFog.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTestNoFog.pdb │ │ │ │ ├── AlphaTestEffect_VSAlphaTestVc.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTestVc.pdb │ │ │ │ ├── AlphaTestEffect_VSAlphaTestVcNoFog.inc │ │ │ │ ├── AlphaTestEffect_VSAlphaTestVcNoFog.pdb │ │ │ │ ├── BasicEffect_PSBasic.inc │ │ │ │ ├── BasicEffect_PSBasic.pdb │ │ │ │ ├── BasicEffect_PSBasicNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicNoFog.pdb │ │ │ │ ├── BasicEffect_PSBasicPixelLighting.inc │ │ │ │ ├── BasicEffect_PSBasicPixelLighting.pdb │ │ │ │ ├── BasicEffect_PSBasicPixelLightingTx.inc │ │ │ │ ├── BasicEffect_PSBasicPixelLightingTx.pdb │ │ │ │ ├── BasicEffect_PSBasicTx.inc │ │ │ │ ├── BasicEffect_PSBasicTx.pdb │ │ │ │ ├── BasicEffect_PSBasicTxNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicTxNoFog.pdb │ │ │ │ ├── BasicEffect_PSBasicVertexLighting.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLighting.pdb │ │ │ │ ├── BasicEffect_PSBasicVertexLightingNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLightingNoFog.pdb │ │ │ │ ├── BasicEffect_PSBasicVertexLightingTx.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLightingTx.pdb │ │ │ │ ├── BasicEffect_PSBasicVertexLightingTxNoFog.inc │ │ │ │ ├── BasicEffect_PSBasicVertexLightingTxNoFog.pdb │ │ │ │ ├── BasicEffect_VSBasic.inc │ │ │ │ ├── BasicEffect_VSBasic.pdb │ │ │ │ ├── BasicEffect_VSBasicNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicNoFog.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLight.inc │ │ │ │ ├── BasicEffect_VSBasicOneLight.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightBn.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightTx.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTx.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightTxBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTxBn.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTxVc.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightTxVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightTxVcBn.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightVc.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightVc.pdb │ │ │ │ ├── BasicEffect_VSBasicOneLightVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicOneLightVcBn.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLighting.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLighting.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingBn.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTx.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTx.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxBn.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxVc.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingTxVcBn.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingVc.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingVc.pdb │ │ │ │ ├── BasicEffect_VSBasicPixelLightingVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicPixelLightingVcBn.pdb │ │ │ │ ├── BasicEffect_VSBasicTx.inc │ │ │ │ ├── BasicEffect_VSBasicTx.pdb │ │ │ │ ├── BasicEffect_VSBasicTxNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicTxNoFog.pdb │ │ │ │ ├── BasicEffect_VSBasicTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicTxVc.pdb │ │ │ │ ├── BasicEffect_VSBasicTxVcNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicTxVcNoFog.pdb │ │ │ │ ├── BasicEffect_VSBasicVc.inc │ │ │ │ ├── BasicEffect_VSBasicVc.pdb │ │ │ │ ├── BasicEffect_VSBasicVcNoFog.inc │ │ │ │ ├── BasicEffect_VSBasicVcNoFog.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLighting.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLighting.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingBn.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTx.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTx.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxBn.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxVc.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxVc.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingTxVcBn.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingVc.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingVc.pdb │ │ │ │ ├── BasicEffect_VSBasicVertexLightingVcBn.inc │ │ │ │ ├── BasicEffect_VSBasicVertexLightingVcBn.pdb │ │ │ │ ├── DGSLEffect_main.inc │ │ │ │ ├── DGSLEffect_main.pdb │ │ │ │ ├── DGSLEffect_main1Bones.inc │ │ │ │ ├── DGSLEffect_main1Bones.pdb │ │ │ │ ├── DGSLEffect_main1BonesVc.inc │ │ │ │ ├── DGSLEffect_main1BonesVc.pdb │ │ │ │ ├── DGSLEffect_main2Bones.inc │ │ │ │ ├── DGSLEffect_main2Bones.pdb │ │ │ │ ├── DGSLEffect_main2BonesVc.inc │ │ │ │ ├── DGSLEffect_main2BonesVc.pdb │ │ │ │ ├── DGSLEffect_main4Bones.inc │ │ │ │ ├── DGSLEffect_main4Bones.pdb │ │ │ │ ├── DGSLEffect_main4BonesVc.inc │ │ │ │ ├── DGSLEffect_main4BonesVc.pdb │ │ │ │ ├── DGSLEffect_mainVc.inc │ │ │ │ ├── DGSLEffect_mainVc.pdb │ │ │ │ ├── DGSLLambert_main.inc │ │ │ │ ├── DGSLLambert_main.pdb │ │ │ │ ├── DGSLLambert_mainTk.inc │ │ │ │ ├── DGSLLambert_mainTk.pdb │ │ │ │ ├── DGSLLambert_mainTx.inc │ │ │ │ ├── DGSLLambert_mainTx.pdb │ │ │ │ ├── DGSLLambert_mainTxTk.inc │ │ │ │ ├── DGSLLambert_mainTxTk.pdb │ │ │ │ ├── DGSLPhong_main.inc │ │ │ │ ├── DGSLPhong_main.pdb │ │ │ │ ├── DGSLPhong_mainTk.inc │ │ │ │ ├── DGSLPhong_mainTk.pdb │ │ │ │ ├── DGSLPhong_mainTx.inc │ │ │ │ ├── DGSLPhong_mainTx.pdb │ │ │ │ ├── DGSLPhong_mainTxTk.inc │ │ │ │ ├── DGSLPhong_mainTxTk.pdb │ │ │ │ ├── DGSLUnlit_main.inc │ │ │ │ ├── DGSLUnlit_main.pdb │ │ │ │ ├── DGSLUnlit_mainTk.inc │ │ │ │ ├── DGSLUnlit_mainTk.pdb │ │ │ │ ├── DGSLUnlit_mainTx.inc │ │ │ │ ├── DGSLUnlit_mainTx.pdb │ │ │ │ ├── DGSLUnlit_mainTxTk.inc │ │ │ │ ├── DGSLUnlit_mainTxTk.pdb │ │ │ │ ├── DebugEffect_PSHemiAmbient.inc │ │ │ │ ├── DebugEffect_PSHemiAmbient.pdb │ │ │ │ ├── DebugEffect_PSRGBBiTangents.inc │ │ │ │ ├── DebugEffect_PSRGBBiTangents.pdb │ │ │ │ ├── DebugEffect_PSRGBNormals.inc │ │ │ │ ├── DebugEffect_PSRGBNormals.pdb │ │ │ │ ├── DebugEffect_PSRGBTangents.inc │ │ │ │ ├── DebugEffect_PSRGBTangents.pdb │ │ │ │ ├── DebugEffect_VSDebug.inc │ │ │ │ ├── DebugEffect_VSDebug.pdb │ │ │ │ ├── DebugEffect_VSDebugBn.inc │ │ │ │ ├── DebugEffect_VSDebugBn.pdb │ │ │ │ ├── DebugEffect_VSDebugVc.inc │ │ │ │ ├── DebugEffect_VSDebugVc.pdb │ │ │ │ ├── DebugEffect_VSDebugVcBn.inc │ │ │ │ ├── DebugEffect_VSDebugVcBn.pdb │ │ │ │ ├── DualTextureEffect_PSDualTexture.inc │ │ │ │ ├── DualTextureEffect_PSDualTexture.pdb │ │ │ │ ├── DualTextureEffect_PSDualTextureNoFog.inc │ │ │ │ ├── DualTextureEffect_PSDualTextureNoFog.pdb │ │ │ │ ├── DualTextureEffect_VSDualTexture.inc │ │ │ │ ├── DualTextureEffect_VSDualTexture.pdb │ │ │ │ ├── DualTextureEffect_VSDualTextureNoFog.inc │ │ │ │ ├── DualTextureEffect_VSDualTextureNoFog.pdb │ │ │ │ ├── DualTextureEffect_VSDualTextureVc.inc │ │ │ │ ├── DualTextureEffect_VSDualTextureVc.pdb │ │ │ │ ├── DualTextureEffect_VSDualTextureVcNoFog.inc │ │ │ │ ├── DualTextureEffect_VSDualTextureVcNoFog.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMap.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMap.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapNoFog.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLighting.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLighting.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapSpecular.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapSpecular.pdb │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapSpecularNoFog.inc │ │ │ │ ├── EnvironmentMapEffect_PSEnvMapSpecularNoFog.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMap.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMap.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapBn.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapFresnel.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapFresnel.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapFresnelBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapFresnelBn.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLight.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLight.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightBn.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightFresnel.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightFresnel.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapPixelLighting.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapPixelLighting.pdb │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapPixelLightingBn.inc │ │ │ │ ├── EnvironmentMapEffect_VSEnvMapPixelLightingBn.pdb │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTx.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTx.pdb │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoFog.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoFog.pdb │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.pdb │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoSpec.inc │ │ │ │ ├── NormalMapEffect_PSNormalPixelLightingTxNoSpec.pdb │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTx.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTx.pdb │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxBn.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxBn.pdb │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxVc.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxVc.pdb │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxVcBn.inc │ │ │ │ ├── NormalMapEffect_VSNormalPixelLightingTxVcBn.pdb │ │ │ │ ├── PBREffect_PSConstant.inc │ │ │ │ ├── PBREffect_PSConstant.pdb │ │ │ │ ├── PBREffect_PSTextured.inc │ │ │ │ ├── PBREffect_PSTextured.pdb │ │ │ │ ├── PBREffect_PSTexturedEmissive.inc │ │ │ │ ├── PBREffect_PSTexturedEmissive.pdb │ │ │ │ ├── PBREffect_PSTexturedEmissiveVelocity.inc │ │ │ │ ├── PBREffect_PSTexturedEmissiveVelocity.pdb │ │ │ │ ├── PBREffect_PSTexturedVelocity.inc │ │ │ │ ├── PBREffect_PSTexturedVelocity.pdb │ │ │ │ ├── PBREffect_VSConstant.inc │ │ │ │ ├── PBREffect_VSConstant.pdb │ │ │ │ ├── PBREffect_VSConstantBn.inc │ │ │ │ ├── PBREffect_VSConstantBn.pdb │ │ │ │ ├── PBREffect_VSConstantVelocity.inc │ │ │ │ ├── PBREffect_VSConstantVelocity.pdb │ │ │ │ ├── PBREffect_VSConstantVelocityBn.inc │ │ │ │ ├── PBREffect_VSConstantVelocityBn.pdb │ │ │ │ ├── PostProcess_PSBloomBlur.inc │ │ │ │ ├── PostProcess_PSBloomBlur.pdb │ │ │ │ ├── PostProcess_PSBloomCombine.inc │ │ │ │ ├── PostProcess_PSBloomCombine.pdb │ │ │ │ ├── PostProcess_PSBloomExtract.inc │ │ │ │ ├── PostProcess_PSBloomExtract.pdb │ │ │ │ ├── PostProcess_PSCopy.inc │ │ │ │ ├── PostProcess_PSCopy.pdb │ │ │ │ ├── PostProcess_PSDownScale2x2.inc │ │ │ │ ├── PostProcess_PSDownScale2x2.pdb │ │ │ │ ├── PostProcess_PSDownScale4x4.inc │ │ │ │ ├── PostProcess_PSDownScale4x4.pdb │ │ │ │ ├── PostProcess_PSGaussianBlur5x5.inc │ │ │ │ ├── PostProcess_PSGaussianBlur5x5.pdb │ │ │ │ ├── PostProcess_PSMerge.inc │ │ │ │ ├── PostProcess_PSMerge.pdb │ │ │ │ ├── PostProcess_PSMonochrome.inc │ │ │ │ ├── PostProcess_PSMonochrome.pdb │ │ │ │ ├── PostProcess_PSSepia.inc │ │ │ │ ├── PostProcess_PSSepia.pdb │ │ │ │ ├── PostProcess_VSQuad.inc │ │ │ │ ├── PostProcess_VSQuad.pdb │ │ │ │ ├── SkinnedEffect_PSSkinnedPixelLighting.inc │ │ │ │ ├── SkinnedEffect_PSSkinnedPixelLighting.pdb │ │ │ │ ├── SkinnedEffect_PSSkinnedVertexLighting.inc │ │ │ │ ├── SkinnedEffect_PSSkinnedVertexLighting.pdb │ │ │ │ ├── SkinnedEffect_PSSkinnedVertexLightingNoFog.inc │ │ │ │ ├── SkinnedEffect_PSSkinnedVertexLightingNoFog.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightFourBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightFourBones.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightFourBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightFourBonesBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightOneBone.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightOneBone.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightOneBoneBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightOneBoneBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightTwoBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightTwoBones.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightTwoBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedOneLightTwoBonesBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingFourBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingFourBones.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingOneBone.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingOneBone.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingTwoBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingTwoBones.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingFourBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingFourBones.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingOneBone.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingOneBone.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingTwoBones.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingTwoBones.pdb │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.inc │ │ │ │ ├── SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.pdb │ │ │ │ ├── SpriteEffect_SpritePixelShader.inc │ │ │ │ ├── SpriteEffect_SpritePixelShader.pdb │ │ │ │ ├── SpriteEffect_SpriteVertexShader.inc │ │ │ │ ├── SpriteEffect_SpriteVertexShader.pdb │ │ │ │ ├── ToneMap_PSACESFilmic.inc │ │ │ │ ├── ToneMap_PSACESFilmic.pdb │ │ │ │ ├── ToneMap_PSACESFilmic_SRGB.inc │ │ │ │ ├── ToneMap_PSACESFilmic_SRGB.pdb │ │ │ │ ├── ToneMap_PSCopy.inc │ │ │ │ ├── ToneMap_PSCopy.pdb │ │ │ │ ├── ToneMap_PSHDR10.inc │ │ │ │ ├── ToneMap_PSHDR10.pdb │ │ │ │ ├── ToneMap_PSReinhard.inc │ │ │ │ ├── ToneMap_PSReinhard.pdb │ │ │ │ ├── ToneMap_PSReinhard_SRGB.inc │ │ │ │ ├── ToneMap_PSReinhard_SRGB.pdb │ │ │ │ ├── ToneMap_PSSaturate.inc │ │ │ │ ├── ToneMap_PSSaturate.pdb │ │ │ │ ├── ToneMap_PSSaturate_SRGB.inc │ │ │ │ ├── ToneMap_PSSaturate_SRGB.pdb │ │ │ │ ├── ToneMap_PS_SRGB.inc │ │ │ │ ├── ToneMap_PS_SRGB.pdb │ │ │ │ ├── ToneMap_VSQuad.inc │ │ │ │ └── ToneMap_VSQuad.pdb │ │ │ ├── DGSLEffect.fx │ │ │ ├── DGSLLambert.hlsl │ │ │ ├── DGSLPhong.hlsl │ │ │ ├── DGSLUnlit.hlsl │ │ │ ├── DebugEffect.fx │ │ │ ├── DualTextureEffect.fx │ │ │ ├── EnvironmentMapEffect.fx │ │ │ ├── Lighting.fxh │ │ │ ├── NormalMapEffect.fx │ │ │ ├── PBRCommon.fxh │ │ │ ├── PBREffect.fx │ │ │ ├── PixelPacking_Velocity.hlsli │ │ │ ├── PostProcess.fx │ │ │ ├── SkinnedEffect.fx │ │ │ ├── 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 │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── vbo.h │ │ └── XWBTool │ │ ├── directx.ico │ │ ├── xwbtool.cpp │ │ ├── xwbtool.rc │ │ ├── xwbtool_Desktop_2017.vcxproj │ │ ├── xwbtool_Desktop_2017.vcxproj.filters │ │ ├── xwbtool_Desktop_2019.vcxproj │ │ └── xwbtool_Desktop_2019.vcxproj.filters └── src │ └── main.cpp ├── gallery └── hello_world.png └── include └── agz └── smaa ├── mlaa.h └── smaa.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | example/screenshot.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/README.md -------------------------------------------------------------------------------- /example/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/1.png -------------------------------------------------------------------------------- /example/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/2.png -------------------------------------------------------------------------------- /example/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/3.png -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/fxaa_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/fxaa_output.png -------------------------------------------------------------------------------- /example/lib/DirectXTK/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.editorconfig -------------------------------------------------------------------------------- /example/lib/DirectXTK/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.gitattributes -------------------------------------------------------------------------------- /example/lib/DirectXTK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.gitignore -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/directxtk_desktop_2017.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/directxtk_desktop_2017.nuspec -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/directxtk_desktop_2017.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/directxtk_desktop_2017.targets -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/directxtk_desktop_win10.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/directxtk_desktop_win10.nuspec -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/directxtk_desktop_win10.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/directxtk_desktop_win10.targets -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/directxtk_uwp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/directxtk_uwp.nuspec -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/directxtk_uwp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/directxtk_uwp.targets -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/icon.jpg -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/signconfig_desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/signconfig_desktop.xml -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/signconfig_uwp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/signconfig_uwp.xml -------------------------------------------------------------------------------- /example/lib/DirectXTK/.nuget/versioninfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/.nuget/versioninfo.ps1 -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/AudioEngine.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_DXSDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_DXSDK.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_DXSDK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_DXSDK.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win7.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win7.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win8.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win8.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2017_Win8.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win7.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win7.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win8.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win8.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DirectXTKAudio_Desktop_2019_Win8.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/DynamicSoundEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/DynamicSoundEffectInstance.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/SoundCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/SoundCommon.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/SoundCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/SoundCommon.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/SoundEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/SoundEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/SoundEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/SoundEffectInstance.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/SoundStreamInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/SoundStreamInstance.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/WAVFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/WAVFileReader.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/WAVFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/WAVFileReader.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/WaveBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/WaveBank.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/WaveBankReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/WaveBankReader.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/WaveBankReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/WaveBankReader.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Audio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Audio/packages.config -------------------------------------------------------------------------------- /example/lib/DirectXTK/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/CMakeLists.txt -------------------------------------------------------------------------------- /example/lib/DirectXTK/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/CMakeSettings.json -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017_DXSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017_DXSDK.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017_Win10.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2017_Win7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2017_Win7.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019_Win10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019_Win10.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019_Win10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019_Win10.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019_Win10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019_Win10.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Desktop_2019_Win7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Desktop_2019_Win7.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Windows10_2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Windows10_2017.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Windows10_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Windows10_2017.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Windows10_2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Windows10_2017.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Windows10_2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Windows10_2019.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Windows10_2019.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Windows10_2019.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_Windows10_2019.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_Windows10_2019.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.sln -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/DirectXTK_XboxOneXDK_2017.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/HISTORY.md -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/Audio.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/CommonStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/CommonStates.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/DDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/DDSTextureLoader.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/DirectXHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/DirectXHelpers.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/Effects.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/GamePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/GamePad.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/GeometricPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/GeometricPrimitive.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/GraphicsMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/GraphicsMemory.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/Keyboard.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/Model.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/Mouse.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/PostProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/PostProcess.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/PrimitiveBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/PrimitiveBatch.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/ScreenGrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/ScreenGrab.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/SimpleMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/SimpleMath.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/SimpleMath.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/SimpleMath.inl -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/SpriteBatch.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/SpriteFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/SpriteFont.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/VertexTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/VertexTypes.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/WICTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/WICTextureLoader.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Inc/XboxDDSTextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Inc/XboxDDSTextureLoader.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/LICENSE -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/BitmapImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/BitmapImporter.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/BitmapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/BitmapUtils.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/CharacterRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/CharacterRegion.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/CommandLineOptions.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/CommandLineParser.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/Glyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/Glyph.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/GlyphCropper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/GlyphCropper.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/GlyphPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/GlyphPacker.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/IFontImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/IFontImporter.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/MakeSpriteFont.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/MakeSpriteFont.csproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/Program.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/SpriteFontWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/SpriteFontWriter.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/MakeSpriteFont/TrueTypeImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/MakeSpriteFont/TrueTypeImporter.cs -------------------------------------------------------------------------------- /example/lib/DirectXTK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/README.md -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/AlignedNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/AlignedNew.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/AlphaTestEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/AlphaTestEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/BasicEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/BasicEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/BasicPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/BasicPostProcess.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Bezier.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/BinaryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/BinaryReader.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/BinaryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/BinaryReader.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/CommonStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/CommonStates.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/ConstantBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/ConstantBuffer.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DDS.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DDSTextureLoader.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DGSLEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DGSLEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DGSLEffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DGSLEffectFactory.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DebugEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DebugEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DemandCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DemandCreate.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DualPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DualPostProcess.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/DualTextureEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/DualTextureEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/EffectCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/EffectCommon.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/EffectCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/EffectCommon.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/EffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/EffectFactory.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/EnvironmentMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/EnvironmentMapEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/GamePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/GamePad.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/GeometricPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/GeometricPrimitive.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Geometry.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Geometry.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/GraphicsMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/GraphicsMemory.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Keyboard.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/LoaderHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/LoaderHelpers.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Model.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/ModelLoadCMO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/ModelLoadCMO.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/ModelLoadSDKMESH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/ModelLoadSDKMESH.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/ModelLoadVBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/ModelLoadVBO.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Mouse.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/NormalMapEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/NormalMapEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/PBREffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/PBREffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/PBREffectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/PBREffectFactory.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/PlatformHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/PlatformHelpers.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/PrimitiveBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/PrimitiveBatch.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/SDKMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/SDKMesh.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/ScreenGrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/ScreenGrab.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/AlphaTestEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/AlphaTestEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/BasicEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/BasicEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Common.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Common.fxh -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/CompileShaders.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/CompileShaders.cmd -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNe.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNe.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNe.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNe.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNeNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNeNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNeNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestEqNeNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGt.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGt.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGtNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGtNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGtNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_PSAlphaTestLtGtNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTest.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTest.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVcNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVcNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVcNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/AlphaTestEffect_VSAlphaTestVcNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasic.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasic.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLightingTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLightingTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLightingTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicPixelLightingTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTxNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTxNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTxNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicTxNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTxNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTxNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTxNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_PSBasicVertexLightingTxNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasic.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasic.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLight.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLight.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLight.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightTxVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicOneLightVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingTxVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicPixelLightingVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVcNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVcNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVcNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicTxVcNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVcNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVcNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVcNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVcNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingTxVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/BasicEffect_VSBasicVertexLightingVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1Bones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1Bones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1Bones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1Bones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1BonesVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1BonesVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1BonesVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main1BonesVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2Bones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2Bones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2Bones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2Bones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2BonesVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2BonesVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2BonesVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main2BonesVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4Bones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4Bones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4Bones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4Bones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4BonesVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4BonesVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4BonesVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_main4BonesVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_mainVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_mainVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_mainVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLEffect_mainVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_main.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_main.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_main.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTk.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTk.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTxTk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTxTk.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTxTk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLLambert_mainTxTk.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_main.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_main.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_main.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTk.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTk.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTxTk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTxTk.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTxTk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLPhong_mainTxTk.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_main.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_main.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_main.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTk.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTk.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTxTk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTxTk.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTxTk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DGSLUnlit_mainTxTk.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSHemiAmbient.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSHemiAmbient.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSHemiAmbient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSHemiAmbient.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBBiTangents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBBiTangents.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBBiTangents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBBiTangents.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBNormals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBNormals.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBNormals.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBNormals.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBTangents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBTangents.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBTangents.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_PSRGBTangents.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebug.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebug.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DebugEffect_VSDebugVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTexture.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTexture.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTexture.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTexture.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTextureNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTextureNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTextureNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_PSDualTextureNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTexture.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTexture.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTexture.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTexture.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVcNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVcNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVcNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/DualTextureEffect_VSDualTextureVcNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMap.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMap.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnel.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingFresnelNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapPixelLightingNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecular.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecular.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecular.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecular.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecularNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecularNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecularNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_PSEnvMapSpecularNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMap.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMap.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnel.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnel.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnelBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnelBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnelBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapFresnelBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLight.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLight.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLight.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnel.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnel.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapOneLightFresnelBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLightingBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLightingBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLightingBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/EnvironmentMapEffect_VSEnvMapPixelLightingBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoFogSpec.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoSpec.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoSpec.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoSpec.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_PSNormalPixelLightingTxNoSpec.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTx.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTx.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVc.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVc.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVc.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVcBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVcBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVcBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/NormalMapEffect_VSNormalPixelLightingTxVcBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSConstant.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSConstant.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSConstant.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSConstant.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTextured.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTextured.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTextured.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTextured.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissive.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissive.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissive.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissiveVelocity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissiveVelocity.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissiveVelocity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedEmissiveVelocity.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedVelocity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedVelocity.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedVelocity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_PSTexturedVelocity.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstant.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstant.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstant.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstant.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocity.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocity.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocity.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocityBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocityBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocityBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PBREffect_VSConstantVelocityBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomBlur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomBlur.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomBlur.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomBlur.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomCombine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomCombine.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomCombine.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomCombine.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomExtract.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomExtract.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomExtract.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSBloomExtract.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSCopy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSCopy.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSCopy.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSCopy.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale2x2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale2x2.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale2x2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale2x2.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale4x4.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale4x4.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale4x4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSDownScale4x4.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSGaussianBlur5x5.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSGaussianBlur5x5.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSGaussianBlur5x5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSGaussianBlur5x5.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMerge.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMerge.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMerge.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMerge.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMonochrome.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMonochrome.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMonochrome.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSMonochrome.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSSepia.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSSepia.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSSepia.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_PSSepia.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_VSQuad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_VSQuad.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_VSQuad.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/PostProcess_VSQuad.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedPixelLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedPixelLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedPixelLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedPixelLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLighting.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLighting.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLighting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLighting.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLightingNoFog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLightingNoFog.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLightingNoFog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_PSSkinnedVertexLightingNoFog.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBonesBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBonesBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBonesBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightFourBonesBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBone.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBone.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBone.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBone.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBoneBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBoneBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBoneBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightOneBoneBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBonesBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBonesBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBonesBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedOneLightTwoBonesBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingFourBonesBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBone.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBone.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBone.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBone.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingOneBoneBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedPixelLightingTwoBonesBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingFourBonesBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBone.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBone.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBone.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBone.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingOneBoneBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBones.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBones.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBones.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SkinnedEffect_VSSkinnedVertexLightingTwoBonesBn.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpritePixelShader.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpritePixelShader.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpritePixelShader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpritePixelShader.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpriteVertexShader.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpriteVertexShader.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpriteVertexShader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/SpriteEffect_SpriteVertexShader.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic_SRGB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic_SRGB.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic_SRGB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSACESFilmic_SRGB.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSCopy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSCopy.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSCopy.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSCopy.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSHDR10.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSHDR10.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSHDR10.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSHDR10.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard_SRGB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard_SRGB.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard_SRGB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSReinhard_SRGB.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate_SRGB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate_SRGB.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate_SRGB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PSSaturate_SRGB.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PS_SRGB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PS_SRGB.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PS_SRGB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_PS_SRGB.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_VSQuad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_VSQuad.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_VSQuad.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Compiled/ToneMap_VSQuad.pdb -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/DGSLEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/DGSLEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/DGSLLambert.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/DGSLLambert.hlsl -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/DGSLPhong.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/DGSLPhong.hlsl -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/DGSLUnlit.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/DGSLUnlit.hlsl -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/DebugEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/DebugEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/DualTextureEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/DualTextureEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/EnvironmentMapEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/EnvironmentMapEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Lighting.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Lighting.fxh -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/NormalMapEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/NormalMapEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/PBRCommon.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/PBRCommon.fxh -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/PBREffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/PBREffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/PixelPacking_Velocity.hlsli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/PixelPacking_Velocity.hlsli -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/PostProcess.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/PostProcess.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/SkinnedEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/SkinnedEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/SpriteEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/SpriteEffect.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Structures.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Structures.fxh -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/ToneMap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/ToneMap.fx -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/Shaders/Utilities.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/Shaders/Utilities.fxh -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/SharedResourcePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/SharedResourcePool.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/SimpleMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/SimpleMath.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/SkinnedEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/SkinnedEffect.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/SpriteBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/SpriteBatch.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/SpriteFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/SpriteFont.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/TeapotData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/TeapotData.inc -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/ToneMapPostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/ToneMapPostProcess.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/VertexTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/VertexTypes.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/WICTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/WICTextureLoader.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/XboxDDSTextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/XboxDDSTextureLoader.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/pch.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/pch.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/Src/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/Src/vbo.h -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/directx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/directx.ico -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/xwbtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/xwbtool.cpp -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/xwbtool.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/xwbtool.rc -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2017.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2017.vcxproj.filters -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2019.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2019.vcxproj -------------------------------------------------------------------------------- /example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2019.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/lib/DirectXTK/XWBTool/xwbtool_Desktop_2019.vcxproj.filters -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /gallery/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/gallery/hello_world.png -------------------------------------------------------------------------------- /include/agz/smaa/mlaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/include/agz/smaa/mlaa.h -------------------------------------------------------------------------------- /include/agz/smaa/smaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirGuanZ/D3D11-SMAA/HEAD/include/agz/smaa/smaa.h --------------------------------------------------------------------------------