├── .gitattributes ├── .gitignore ├── AnimatingAdaptiveLayout ├── AnimatingAdaptiveLayout.sln └── AnimatingAdaptiveLayout │ ├── AnimatingAdaptiveLayout.csproj │ ├── AnimatingAdaptiveLayout_TemporaryKey.pfx │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── VisualHelpers.cs │ ├── project.json │ └── project.lock.json ├── HelloVectors ├── HelloAnimatedVisualPlayer │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── 4122-clean.cs │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── HelloAnimatedVisualPlayer.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── HelloAnimatedVisualPlayer_cpp │ ├── .gitignore │ ├── 0016.body_movin.cpp │ ├── 0016.body_movin.h │ ├── App.cpp │ ├── App.h │ ├── App.idl │ ├── App.xaml │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── HelloAnimatedVisualPlayer_cpp.vcxproj │ ├── HelloAnimatedVisualPlayer_cpp.vcxproj.filters │ ├── MainPage.cpp │ ├── MainPage.h │ ├── MainPage.idl │ ├── MainPage.xaml │ ├── Package.appxmanifest │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── HelloVectors.sln ├── HelloVectors │ ├── Animations │ │ ├── HappyBirthday.cs │ │ ├── ICompositionSource.h │ │ ├── happybirthday.aep │ │ ├── newAnimation.json │ │ ├── snowman.cpp │ │ ├── snowman.cs │ │ └── snowman.h │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── HelloVectors.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── SimplePlayer.cs ├── HelloVectors_cpp │ ├── App.cpp │ ├── App.h │ ├── App.idl │ ├── App.xaml │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── HelloVectors_cpp.vcxproj │ ├── HelloVectors_cpp.vcxproj.filters │ ├── MainPage.cpp │ ├── MainPage.h │ ├── MainPage.idl │ ├── MainPage.xaml │ ├── Package.appxmanifest │ ├── SimplePlayer.h │ ├── SquareCircleMorph.cpp │ ├── SquareCircleMorph.h │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt └── HelloVectors_win32_cpp │ ├── HelloVectors.exe.manifest │ ├── HelloVectors_win32.cpp │ ├── HelloVectors_win32_cpp.vcxproj │ ├── HelloVectors_win32_cpp.vcxproj.filters │ ├── LottieLogo1.cpp │ ├── LottieLogo1.h │ ├── desktopcompositionwindow.h │ ├── packages.config │ ├── pch.cpp │ └── pch.h ├── HelloVirtualSurface ├── HelloVirtualSurface.sln ├── HelloVirtualSurface │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── FastInfoDisplay.cs │ ├── HelloVirtualSurface.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Themes │ │ └── Generic.xaml │ ├── VisualHelpers.cs │ ├── project.json │ └── project.lock.json ├── TileManager │ ├── ITileRenderer.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── TileManager.rd.xml │ ├── TileDrawingManager.cs │ ├── TileManager.csproj │ ├── project.json │ └── project.lock.json └── TileManagerTests │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── UnitTestApp.rd.xml │ ├── TileManagerTests.csproj │ ├── TileManagerTests.nuget.props │ ├── TileManagerTests.nuget.targets │ ├── UnitTest.cs │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ ├── project.json │ └── project.lock.json ├── Images ├── Vectors_in_Win32.gif └── virtualsurface.gif ├── MediaPlaybackViews ├── MediaPlaybackViews.sln └── MediaPlaybackViews │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MediaPlaybackViews.csproj │ ├── Package.appxmanifest │ ├── PopupPlayer.xaml │ ├── PopupPlayer.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── VisualHelpers.cs │ ├── project.json │ └── project.lock.json ├── README.md ├── SpringyShowHide ├── SpringyShowHide.sln └── SpringyShowHide │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-200.png │ └── github.svg │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ └── SpringyShowHide.csproj ├── SwipeTest ├── SwipeTest.sln └── SwipeTest │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ └── SwipeTest.csproj └── XAML-ParallaxDemo ├── XAML-ParallaxDemo.sln └── XAML-ParallaxDemo ├── App.xaml ├── App.xaml.cs ├── ApplicationInsights.config ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png ├── Wide310x150Logo.scale-200.png └── untitled.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── XAML-ParallaxDemo.csproj ├── project.json └── project.lock.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout.sln -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout.csproj -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout_TemporaryKey.pfx -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/App.xaml -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/App.xaml.cs -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/StoreLogo.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/MainPage.xaml -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/MainPage.xaml.cs -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Package.appxmanifest -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/Properties/Default.rd.xml -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/VisualHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/VisualHelpers.cs -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/project.json -------------------------------------------------------------------------------- /AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/AnimatingAdaptiveLayout/AnimatingAdaptiveLayout/project.lock.json -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/App.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/App.xaml.cs -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/4122-clean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/4122-clean.cs -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/HelloAnimatedVisualPlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/HelloAnimatedVisualPlayer.csproj -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/MainPage.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/MainPage.xaml.cs -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Package.appxmanifest -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/.gitignore: -------------------------------------------------------------------------------- 1 | Generated Files/ -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/0016.body_movin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/0016.body_movin.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/0016.body_movin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/0016.body_movin.h -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/App.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/App.h -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/App.idl: -------------------------------------------------------------------------------- 1 | namespace HelloAnimatedVisualPlayer_cpp 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/App.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/HelloAnimatedVisualPlayer_cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/HelloAnimatedVisualPlayer_cpp.vcxproj -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/HelloAnimatedVisualPlayer_cpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/HelloAnimatedVisualPlayer_cpp.vcxproj.filters -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.h -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.idl -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/MainPage.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/Package.appxmanifest -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/packages.config -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/pch.h -------------------------------------------------------------------------------- /HelloVectors/HelloAnimatedVisualPlayer_cpp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloAnimatedVisualPlayer_cpp/readme.txt -------------------------------------------------------------------------------- /HelloVectors/HelloVectors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors.sln -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/HappyBirthday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Animations/HappyBirthday.cs -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/ICompositionSource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/happybirthday.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Animations/happybirthday.aep -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/newAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Animations/newAnimation.json -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/snowman.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/snowman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Animations/snowman.cs -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Animations/snowman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/App.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/App.xaml.cs -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/HelloVectors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/HelloVectors.csproj -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/MainPage.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/MainPage.xaml.cs -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Package.appxmanifest -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HelloVectors/HelloVectors/SimplePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors/SimplePlayer.cs -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/App.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/App.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/App.idl: -------------------------------------------------------------------------------- 1 | namespace HelloVectors_cpp 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/App.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/HelloVectors_cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/HelloVectors_cpp.vcxproj -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/HelloVectors_cpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/HelloVectors_cpp.vcxproj.filters -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/MainPage.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/MainPage.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/MainPage.idl -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/MainPage.xaml -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/Package.appxmanifest -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/SimplePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/SimplePlayer.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/SquareCircleMorph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/SquareCircleMorph.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/SquareCircleMorph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/SquareCircleMorph.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/packages.config -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/pch.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_cpp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_cpp/readme.txt -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/HelloVectors.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/HelloVectors.exe.manifest -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/HelloVectors_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/HelloVectors_win32.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/HelloVectors_win32_cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/HelloVectors_win32_cpp.vcxproj -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/HelloVectors_win32_cpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/HelloVectors_win32_cpp.vcxproj.filters -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/LottieLogo1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/LottieLogo1.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/LottieLogo1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/LottieLogo1.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/desktopcompositionwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/desktopcompositionwindow.h -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/packages.config -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/pch.cpp -------------------------------------------------------------------------------- /HelloVectors/HelloVectors_win32_cpp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVectors/HelloVectors_win32_cpp/pch.h -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface.sln -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/App.xaml -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/App.xaml.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/FastInfoDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/FastInfoDisplay.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/HelloVirtualSurface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/HelloVirtualSurface.csproj -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/MainPage.xaml -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/MainPage.xaml.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Package.appxmanifest -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Properties/Default.rd.xml -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/Themes/Generic.xaml -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/VisualHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/VisualHelpers.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/project.json -------------------------------------------------------------------------------- /HelloVirtualSurface/HelloVirtualSurface/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/HelloVirtualSurface/project.lock.json -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/ITileRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/ITileRenderer.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/Properties/TileManager.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/Properties/TileManager.rd.xml -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/TileDrawingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/TileDrawingManager.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/TileManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/TileManager.csproj -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/project.json -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManager/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManager/project.lock.json -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Package.appxmanifest -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/Properties/UnitTestApp.rd.xml -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/TileManagerTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/TileManagerTests.csproj -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/TileManagerTests.nuget.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/TileManagerTests.nuget.props -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/TileManagerTests.nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/TileManagerTests.nuget.targets -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/UnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/UnitTest.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/UnitTestApp.xaml -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/project.json -------------------------------------------------------------------------------- /HelloVirtualSurface/TileManagerTests/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/HelloVirtualSurface/TileManagerTests/project.lock.json -------------------------------------------------------------------------------- /Images/Vectors_in_Win32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/Images/Vectors_in_Win32.gif -------------------------------------------------------------------------------- /Images/virtualsurface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/Images/virtualsurface.gif -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews.sln -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/App.xaml -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/App.xaml.cs -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/StoreLogo.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/MainPage.xaml -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/MainPage.xaml.cs -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/MediaPlaybackViews.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/MediaPlaybackViews.csproj -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Package.appxmanifest -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/PopupPlayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/PopupPlayer.xaml -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/PopupPlayer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/PopupPlayer.xaml.cs -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/Properties/Default.rd.xml -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/VisualHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/VisualHelpers.cs -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/project.json -------------------------------------------------------------------------------- /MediaPlaybackViews/MediaPlaybackViews/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/MediaPlaybackViews/MediaPlaybackViews/project.lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/README.md -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide.sln -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/App.xaml -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/App.xaml.cs -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Assets/github.svg -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/MainPage.xaml -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/MainPage.xaml.cs -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Package.appxmanifest -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/Properties/Default.rd.xml -------------------------------------------------------------------------------- /SpringyShowHide/SpringyShowHide/SpringyShowHide.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SpringyShowHide/SpringyShowHide/SpringyShowHide.csproj -------------------------------------------------------------------------------- /SwipeTest/SwipeTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest.sln -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/App.xaml -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/App.xaml.cs -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/MainPage.xaml -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/MainPage.xaml.cs -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Package.appxmanifest -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/Properties/Default.rd.xml -------------------------------------------------------------------------------- /SwipeTest/SwipeTest/SwipeTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/SwipeTest/SwipeTest/SwipeTest.csproj -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo.sln -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/App.xaml -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/App.xaml.cs -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/ApplicationInsights.config -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Assets/untitled.png -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/MainPage.xaml -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/MainPage.xaml.cs -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Package.appxmanifest -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/Properties/Default.rd.xml -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/XAML-ParallaxDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/XAML-ParallaxDemo.csproj -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/project.json -------------------------------------------------------------------------------- /XAML-ParallaxDemo/XAML-ParallaxDemo/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarkezone/UWPCompositionDemos/HEAD/XAML-ParallaxDemo/XAML-ParallaxDemo/project.lock.json --------------------------------------------------------------------------------