├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── CompositionExample ├── App.cs ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SplashScreen.scale-100.png │ ├── Square71x71Logo.scale-100.png │ ├── StoreLogo.scale-100.png │ └── WideLogo.scale-100.png ├── CompositionExample.csproj ├── CompositionExample.uap.sln ├── DrawingSurfaceRenderer.cs ├── Package.appxmanifest ├── Properties │ └── AssemblyInfo.cs ├── RuntimeDirectives.rd.xml ├── SwapChainRenderer.cs └── TemporaryKey.pfx ├── CoreWindowExample ├── App.cs ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SplashScreen.scale-100.png │ ├── Square71x71Logo.scale-100.png │ ├── StoreLogo.scale-100.png │ └── WideLogo.scale-100.png ├── ConvexHull.cs ├── CoreWindowExample.uap.appxmanifest ├── CoreWindowExample.uap.csproj ├── CoreWindowExample.uap.sln ├── Properties │ └── AssemblyInfo.cs ├── Renderer.cs ├── RuntimeDirectives.rd.xml ├── SwapChainManager.cs └── TemporaryKey.pfx ├── ExampleGallery ├── AnimatedControlExample.xaml ├── AnimatedControlExample.xaml.cs ├── App.xaml ├── App.xaml.cs ├── ArcOptions.xaml ├── ArcOptions.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 ├── BackgroundTask │ ├── ExampleGallery.BackgroundTask.csproj │ ├── LiveTileUpdater.cs │ ├── LiveTileUpdaterTask.cs │ └── WinRT.Host.runtimeconfig.json ├── BackgroundTaskExample.xaml ├── BackgroundTaskExample.xaml.cs ├── BasicVideoEffectExample.xaml ├── BasicVideoEffectExample.xaml.cs ├── BitmapOrientation │ ├── orientation_0.jpg │ ├── orientation_1.jpg │ ├── orientation_2.jpg │ ├── orientation_3.jpg │ ├── orientation_4.jpg │ ├── orientation_5.jpg │ ├── orientation_6.jpg │ ├── orientation_65535.jpg │ ├── orientation_7.jpg │ ├── orientation_8.jpg │ └── orientation_9.jpg ├── BitmapRotation.xaml ├── BitmapRotation.xaml.cs ├── BurningTextExample.xaml ├── BurningTextExample.xaml.cs ├── CameraEffectExample.xaml ├── CameraEffectExample.xaml.cs ├── ControlTransforms.xaml ├── ControlTransforms.xaml.cs ├── CustomControlExample.xaml ├── CustomControlExample.xaml.cs ├── CustomEffects.xaml ├── CustomEffects.xaml.cs ├── CustomFonts.xaml ├── CustomFonts.xaml.cs ├── CustomTextLayouts.xaml ├── CustomTextLayouts.xaml.cs ├── Direct3DInterop │ ├── ExampleGallery.Direct3DInterop.uap.vcxproj │ ├── ExampleGallery.Direct3DInterop.uap.vcxproj.filters │ ├── SpriteBatchPerformance.cpp │ ├── TeapotRenderer.cpp │ ├── TeapotRenderer.h │ ├── packages.config │ ├── pch.cpp │ └── pch.h ├── Direct3DInteropExample.xaml ├── Direct3DInteropExample.xaml.cs ├── DpiExample.xaml ├── DpiExample.xaml.cs ├── DrawImageEmulations.xaml ├── DrawImageEmulations.xaml.cs ├── EffectRegionMapping.xaml ├── EffectRegionMapping.xaml.cs ├── Effects │ ├── DisplacementEffect.cs │ ├── DynamicBlurVideoEffect.cs │ ├── ExampleGallery.Effects.csproj │ ├── ExampleVideoEffect.cs │ └── RotatedTilesEffect.cs ├── EffectsExample.xaml ├── EffectsExample.xaml.cs ├── ExampleGallery.csproj ├── ExampleGallery.sln ├── FontMetrics.xaml ├── FontMetrics.xaml.cs ├── GameOfLife.xaml ├── GameOfLife.xaml.cs ├── GeometryOperations.xaml ├── GeometryOperations.xaml.cs ├── GlowTextCustomControl.cs ├── GlyphRotation.xaml ├── GlyphRotation.xaml.cs ├── GradientMeshExample.xaml ├── GradientMeshExample.xaml.cs ├── HistogramExample.xaml ├── HistogramExample.xaml.cs ├── ImageSourceUpdateRegion.xaml ├── ImageSourceUpdateRegion.xaml.cs ├── Infrastructure │ ├── About.xaml │ ├── About.xaml.cs │ ├── AppIconGenerator.cs │ ├── ColorPicker.cs │ ├── CustomThumbnails.cs │ ├── DeveloperTools.xaml │ ├── DeveloperTools.xaml.cs │ ├── ExampleDefinition.cs │ ├── ExamplePage.xaml │ ├── ExamplePage.xaml.cs │ ├── FontPickerComboBox.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── RelayCommand.cs │ ├── SharedResources.xaml │ ├── SuspensionManager.cs │ ├── ThumbnailGenerator.xaml │ ├── ThumbnailGenerator.xaml.cs │ └── Utils.cs ├── InkExample.xaml ├── InkExample.xaml.cs ├── KeyboardInputExample.xaml ├── KeyboardInputExample.xaml.cs ├── LayersExample.xaml ├── LayersExample.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Mandelbrot.xaml ├── Mandelbrot.xaml.cs ├── Package.appxmanifest ├── Particles │ ├── ExplosionParticleSystem.cs │ ├── ExplosionSmokeParticleSystem.cs │ ├── Particle.cs │ ├── ParticleSystem.cs │ ├── SmokePlumeParticleSystem.cs │ ├── explosion.dds │ └── smoke.dds ├── PlatformResources.xaml ├── PrintingExample.xaml ├── PrintingExample.xaml.cs ├── Properties │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── RuntimeDirectives.rd.xml ├── Shaders │ ├── CompileShaders.cmd │ ├── Dissolve.bin │ ├── Dissolve.hlsl │ ├── Mandelbrot.bin │ ├── Mandelbrot.hlsl │ ├── Readme.txt │ ├── Ripples.bin │ ├── Ripples.hlsl │ ├── Sketch.bin │ ├── Sketch.hlsl │ └── SketchTexture.jpg ├── ShapesExample.xaml ├── ShapesExample.xaml.cs ├── SpriteBatchPerf.xaml ├── SpriteBatchPerf.xaml.cs ├── SpriteSheets │ ├── ForestTiles.png │ ├── SpriteSheet.cs │ ├── WizardIdleRight.png │ └── WizardWalkRight.png ├── StrokeStyles.xaml ├── StrokeStyles.xaml.cs ├── SubscriptSuperscript.xaml ├── SubscriptSuperscript.xaml.cs ├── SvgExample.xaml ├── SvgExample.xaml.cs ├── Symbols.ttf ├── TextDirectionControl.cs ├── TextDirectionsExample.xaml ├── TextDirectionsExample.xaml.cs ├── TextLayouts.xaml ├── TextLayouts.xaml.cs ├── TextOutlines.xaml ├── TextOutlines.xaml.cs ├── Thumbnails │ ├── AboutNarrow.png │ ├── AboutWide.png │ ├── AnimatedControlNarrow.png │ ├── AnimatedControlWide.png │ ├── ArcOptionsNarrow.png │ ├── ArcOptionsWide.png │ ├── BackgroundTaskNarrow.png │ ├── BackgroundTaskWide.png │ ├── BitmapRotationNarrow.png │ ├── BitmapRotationWide.png │ ├── BurningTextNarrow.png │ ├── BurningTextWide.png │ ├── CameraEffectNarrow.png │ ├── CameraEffectWide.png │ ├── ControlTransformsNarrow.png │ ├── ControlTransformsWide.png │ ├── CustomControlNarrow.png │ ├── CustomControlWide.png │ ├── CustomEffectsNarrow.png │ ├── CustomEffectsWide.png │ ├── CustomFontsNarrow.png │ ├── CustomFontsWide.png │ ├── CustomTextLayoutsNarrow.png │ ├── CustomTextLayoutsWide.png │ ├── DPINarrow.png │ ├── DPIWide.png │ ├── DeveloperToolsNarrow.png │ ├── DeveloperToolsWide.png │ ├── Direct3DInteropNarrow.png │ ├── Direct3DInteropWide.png │ ├── DrawImageEmulationsNarrow.png │ ├── DrawImageEmulationsWide.png │ ├── EffectRegionMappingNarrow.png │ ├── EffectRegionMappingWide.png │ ├── EffectsNarrow.png │ ├── EffectsWide.png │ ├── FontMetricsNarrow.png │ ├── FontMetricsWide.png │ ├── GameofLifeNarrow.png │ ├── GameofLifeWide.png │ ├── GeometryOperationsNarrow.png │ ├── GeometryOperationsWide.png │ ├── GlyphRotationNarrow.png │ ├── GlyphRotationWide.png │ ├── GradientMeshNarrow.png │ ├── GradientMeshWide.png │ ├── HistogramNarrow.png │ ├── HistogramWide.png │ ├── ImageSourceUpdateRegionNarrow.png │ ├── ImageSourceUpdateRegionWide.png │ ├── InkNarrow.png │ ├── InkWide.png │ ├── KeyboardInputNarrow.png │ ├── KeyboardInputWide.png │ ├── LayersNarrow.png │ ├── LayersWide.png │ ├── MandelbrotNarrow.png │ ├── MandelbrotWide.png │ ├── ParticleSystemNarrow.png │ ├── ParticleSystemWide.png │ ├── PrintingNarrow.png │ ├── PrintingWide.png │ ├── ShapesNarrow.png │ ├── ShapesWide.png │ ├── SpriteBatchPerformanceNarrow.png │ ├── SpriteBatchPerformanceWide.png │ ├── SpriteSheetsNarrow.png │ ├── SpriteSheetsWide.png │ ├── StrokeStylesNarrow.png │ ├── StrokeStylesWide.png │ ├── SubscriptAndSuperscriptNarrow.png │ ├── SubscriptAndSuperscriptWide.png │ ├── SvgNarrow.png │ ├── SvgWide.png │ ├── TextDirectionsNarrow.png │ ├── TextDirectionsWide.png │ ├── TextLayoutsNarrow.png │ ├── TextLayoutsWide.png │ ├── TextOutlinesNarrow.png │ ├── TextOutlinesWide.png │ ├── TypographyNarrow.png │ ├── TypographyWide.png │ ├── VectorArtNarrow.png │ ├── VectorArtWide.png │ ├── VideoEffectNarrow.png │ ├── VideoEffectWide.png │ ├── VirtualBitmapNarrow.png │ ├── VirtualBitmapWide.png │ ├── VirtualControlNarrow.png │ └── VirtualControlWide.png ├── TypographyExample.xaml ├── TypographyExample.xaml.cs ├── VectorArt.xaml ├── VectorArt.xaml.cs ├── VectorArtScene0.cs ├── VectorArtScene1.cs ├── VirtualBitmapExample.xaml ├── VirtualBitmapExample.xaml.cs ├── VirtualControlExample.xaml ├── VirtualControlExample.xaml.cs ├── app.manifest └── imageTiger.jpg ├── LICENSE.txt ├── README.md ├── SECURITY.md └── SimpleSample ├── SimpleSample.sln ├── SimpleSample ├── 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 ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ └── launchSettings.json ├── SimpleSample.csproj └── app.manifest └── SimpleSampleCPP ├── App.idl ├── App.xaml ├── App.xaml.cpp ├── App.xaml.h ├── 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 ├── MainWindow.idl ├── MainWindow.xaml ├── MainWindow.xaml.cpp ├── MainWindow.xaml.h ├── Package.appxmanifest ├── SimpleSampleCPP.vcxproj ├── SimpleSampleCPP.vcxproj.filters ├── app.manifest ├── packages.config ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CompositionExample/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/App.cs -------------------------------------------------------------------------------- /CompositionExample/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /CompositionExample/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /CompositionExample/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /CompositionExample/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /CompositionExample/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /CompositionExample/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /CompositionExample/CompositionExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/CompositionExample.csproj -------------------------------------------------------------------------------- /CompositionExample/CompositionExample.uap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/CompositionExample.uap.sln -------------------------------------------------------------------------------- /CompositionExample/DrawingSurfaceRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/DrawingSurfaceRenderer.cs -------------------------------------------------------------------------------- /CompositionExample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Package.appxmanifest -------------------------------------------------------------------------------- /CompositionExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompositionExample/RuntimeDirectives.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/RuntimeDirectives.rd.xml -------------------------------------------------------------------------------- /CompositionExample/SwapChainRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/SwapChainRenderer.cs -------------------------------------------------------------------------------- /CompositionExample/TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CompositionExample/TemporaryKey.pfx -------------------------------------------------------------------------------- /CoreWindowExample/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/App.cs -------------------------------------------------------------------------------- /CoreWindowExample/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /CoreWindowExample/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /CoreWindowExample/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /CoreWindowExample/Assets/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Assets/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /CoreWindowExample/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /CoreWindowExample/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /CoreWindowExample/ConvexHull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/ConvexHull.cs -------------------------------------------------------------------------------- /CoreWindowExample/CoreWindowExample.uap.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/CoreWindowExample.uap.appxmanifest -------------------------------------------------------------------------------- /CoreWindowExample/CoreWindowExample.uap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/CoreWindowExample.uap.csproj -------------------------------------------------------------------------------- /CoreWindowExample/CoreWindowExample.uap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/CoreWindowExample.uap.sln -------------------------------------------------------------------------------- /CoreWindowExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CoreWindowExample/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/Renderer.cs -------------------------------------------------------------------------------- /CoreWindowExample/RuntimeDirectives.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/RuntimeDirectives.rd.xml -------------------------------------------------------------------------------- /CoreWindowExample/SwapChainManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/SwapChainManager.cs -------------------------------------------------------------------------------- /CoreWindowExample/TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/CoreWindowExample/TemporaryKey.pfx -------------------------------------------------------------------------------- /ExampleGallery/AnimatedControlExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/AnimatedControlExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/AnimatedControlExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/AnimatedControlExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/App.xaml -------------------------------------------------------------------------------- /ExampleGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/App.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/ArcOptions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ArcOptions.xaml -------------------------------------------------------------------------------- /ExampleGallery/ArcOptions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ArcOptions.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /ExampleGallery/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /ExampleGallery/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /ExampleGallery/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /ExampleGallery/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ExampleGallery/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/StoreLogo.png -------------------------------------------------------------------------------- /ExampleGallery/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /ExampleGallery/BackgroundTask/ExampleGallery.BackgroundTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BackgroundTask/ExampleGallery.BackgroundTask.csproj -------------------------------------------------------------------------------- /ExampleGallery/BackgroundTask/LiveTileUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BackgroundTask/LiveTileUpdater.cs -------------------------------------------------------------------------------- /ExampleGallery/BackgroundTask/LiveTileUpdaterTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BackgroundTask/LiveTileUpdaterTask.cs -------------------------------------------------------------------------------- /ExampleGallery/BackgroundTask/WinRT.Host.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BackgroundTask/WinRT.Host.runtimeconfig.json -------------------------------------------------------------------------------- /ExampleGallery/BackgroundTaskExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BackgroundTaskExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/BackgroundTaskExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BackgroundTaskExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/BasicVideoEffectExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BasicVideoEffectExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/BasicVideoEffectExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BasicVideoEffectExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_0.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_1.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_2.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_3.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_4.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_5.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_6.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_65535.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_65535.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_7.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_8.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapOrientation/orientation_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapOrientation/orientation_9.jpg -------------------------------------------------------------------------------- /ExampleGallery/BitmapRotation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapRotation.xaml -------------------------------------------------------------------------------- /ExampleGallery/BitmapRotation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BitmapRotation.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/BurningTextExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BurningTextExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/BurningTextExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/BurningTextExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/CameraEffectExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CameraEffectExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/CameraEffectExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CameraEffectExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/ControlTransforms.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ControlTransforms.xaml -------------------------------------------------------------------------------- /ExampleGallery/ControlTransforms.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ControlTransforms.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/CustomControlExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomControlExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/CustomControlExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomControlExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/CustomEffects.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomEffects.xaml -------------------------------------------------------------------------------- /ExampleGallery/CustomEffects.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomEffects.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/CustomFonts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomFonts.xaml -------------------------------------------------------------------------------- /ExampleGallery/CustomFonts.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomFonts.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/CustomTextLayouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomTextLayouts.xaml -------------------------------------------------------------------------------- /ExampleGallery/CustomTextLayouts.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/CustomTextLayouts.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/ExampleGallery.Direct3DInterop.uap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/ExampleGallery.Direct3DInterop.uap.vcxproj -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/ExampleGallery.Direct3DInterop.uap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/ExampleGallery.Direct3DInterop.uap.vcxproj.filters -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/SpriteBatchPerformance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/SpriteBatchPerformance.cpp -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/TeapotRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/TeapotRenderer.cpp -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/TeapotRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/TeapotRenderer.h -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/packages.config -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/pch.cpp -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInterop/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInterop/pch.h -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInteropExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInteropExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/Direct3DInteropExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Direct3DInteropExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/DpiExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/DpiExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/DpiExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/DpiExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/DrawImageEmulations.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/DrawImageEmulations.xaml -------------------------------------------------------------------------------- /ExampleGallery/DrawImageEmulations.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/DrawImageEmulations.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/EffectRegionMapping.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/EffectRegionMapping.xaml -------------------------------------------------------------------------------- /ExampleGallery/EffectRegionMapping.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/EffectRegionMapping.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Effects/DisplacementEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Effects/DisplacementEffect.cs -------------------------------------------------------------------------------- /ExampleGallery/Effects/DynamicBlurVideoEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Effects/DynamicBlurVideoEffect.cs -------------------------------------------------------------------------------- /ExampleGallery/Effects/ExampleGallery.Effects.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Effects/ExampleGallery.Effects.csproj -------------------------------------------------------------------------------- /ExampleGallery/Effects/ExampleVideoEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Effects/ExampleVideoEffect.cs -------------------------------------------------------------------------------- /ExampleGallery/Effects/RotatedTilesEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Effects/RotatedTilesEffect.cs -------------------------------------------------------------------------------- /ExampleGallery/EffectsExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/EffectsExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/EffectsExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/EffectsExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/ExampleGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ExampleGallery.csproj -------------------------------------------------------------------------------- /ExampleGallery/ExampleGallery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ExampleGallery.sln -------------------------------------------------------------------------------- /ExampleGallery/FontMetrics.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/FontMetrics.xaml -------------------------------------------------------------------------------- /ExampleGallery/FontMetrics.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/FontMetrics.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/GameOfLife.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GameOfLife.xaml -------------------------------------------------------------------------------- /ExampleGallery/GameOfLife.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GameOfLife.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/GeometryOperations.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GeometryOperations.xaml -------------------------------------------------------------------------------- /ExampleGallery/GeometryOperations.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GeometryOperations.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/GlowTextCustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GlowTextCustomControl.cs -------------------------------------------------------------------------------- /ExampleGallery/GlyphRotation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GlyphRotation.xaml -------------------------------------------------------------------------------- /ExampleGallery/GlyphRotation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GlyphRotation.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/GradientMeshExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GradientMeshExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/GradientMeshExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/GradientMeshExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/HistogramExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/HistogramExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/HistogramExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/HistogramExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/ImageSourceUpdateRegion.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ImageSourceUpdateRegion.xaml -------------------------------------------------------------------------------- /ExampleGallery/ImageSourceUpdateRegion.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ImageSourceUpdateRegion.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/About.xaml -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/About.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/AppIconGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/AppIconGenerator.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/ColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/ColorPicker.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/CustomThumbnails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/CustomThumbnails.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/DeveloperTools.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/DeveloperTools.xaml -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/DeveloperTools.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/DeveloperTools.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/ExampleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/ExampleDefinition.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/ExamplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/ExamplePage.xaml -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/ExamplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/ExamplePage.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/FontPickerComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/FontPickerComboBox.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/MainPage.xaml -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/MainPage.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/RelayCommand.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/SharedResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/SharedResources.xaml -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/SuspensionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/SuspensionManager.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/ThumbnailGenerator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/ThumbnailGenerator.xaml -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/ThumbnailGenerator.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/ThumbnailGenerator.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Infrastructure/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Infrastructure/Utils.cs -------------------------------------------------------------------------------- /ExampleGallery/InkExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/InkExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/InkExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/InkExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/KeyboardInputExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/KeyboardInputExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/KeyboardInputExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/KeyboardInputExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/LayersExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/LayersExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/LayersExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/LayersExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/MainWindow.xaml -------------------------------------------------------------------------------- /ExampleGallery/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Mandelbrot.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Mandelbrot.xaml -------------------------------------------------------------------------------- /ExampleGallery/Mandelbrot.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Mandelbrot.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Package.appxmanifest -------------------------------------------------------------------------------- /ExampleGallery/Particles/ExplosionParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/ExplosionParticleSystem.cs -------------------------------------------------------------------------------- /ExampleGallery/Particles/ExplosionSmokeParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/ExplosionSmokeParticleSystem.cs -------------------------------------------------------------------------------- /ExampleGallery/Particles/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/Particle.cs -------------------------------------------------------------------------------- /ExampleGallery/Particles/ParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/ParticleSystem.cs -------------------------------------------------------------------------------- /ExampleGallery/Particles/SmokePlumeParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/SmokePlumeParticleSystem.cs -------------------------------------------------------------------------------- /ExampleGallery/Particles/explosion.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/explosion.dds -------------------------------------------------------------------------------- /ExampleGallery/Particles/smoke.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Particles/smoke.dds -------------------------------------------------------------------------------- /ExampleGallery/PlatformResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/PlatformResources.xaml -------------------------------------------------------------------------------- /ExampleGallery/PrintingExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/PrintingExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/PrintingExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/PrintingExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /ExampleGallery/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /ExampleGallery/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /ExampleGallery/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Properties/launchSettings.json -------------------------------------------------------------------------------- /ExampleGallery/RuntimeDirectives.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/RuntimeDirectives.rd.xml -------------------------------------------------------------------------------- /ExampleGallery/Shaders/CompileShaders.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/CompileShaders.cmd -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Dissolve.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Dissolve.bin -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Dissolve.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Dissolve.hlsl -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Mandelbrot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Mandelbrot.bin -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Mandelbrot.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Mandelbrot.hlsl -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Readme.txt -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Ripples.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Ripples.bin -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Ripples.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Ripples.hlsl -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Sketch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Sketch.bin -------------------------------------------------------------------------------- /ExampleGallery/Shaders/Sketch.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/Sketch.hlsl -------------------------------------------------------------------------------- /ExampleGallery/Shaders/SketchTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Shaders/SketchTexture.jpg -------------------------------------------------------------------------------- /ExampleGallery/ShapesExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ShapesExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/ShapesExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/ShapesExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/SpriteBatchPerf.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SpriteBatchPerf.xaml -------------------------------------------------------------------------------- /ExampleGallery/SpriteBatchPerf.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SpriteBatchPerf.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/SpriteSheets/ForestTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SpriteSheets/ForestTiles.png -------------------------------------------------------------------------------- /ExampleGallery/SpriteSheets/SpriteSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SpriteSheets/SpriteSheet.cs -------------------------------------------------------------------------------- /ExampleGallery/SpriteSheets/WizardIdleRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SpriteSheets/WizardIdleRight.png -------------------------------------------------------------------------------- /ExampleGallery/SpriteSheets/WizardWalkRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SpriteSheets/WizardWalkRight.png -------------------------------------------------------------------------------- /ExampleGallery/StrokeStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/StrokeStyles.xaml -------------------------------------------------------------------------------- /ExampleGallery/StrokeStyles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/StrokeStyles.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/SubscriptSuperscript.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SubscriptSuperscript.xaml -------------------------------------------------------------------------------- /ExampleGallery/SubscriptSuperscript.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SubscriptSuperscript.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/SvgExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SvgExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/SvgExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/SvgExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Symbols.ttf -------------------------------------------------------------------------------- /ExampleGallery/TextDirectionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextDirectionControl.cs -------------------------------------------------------------------------------- /ExampleGallery/TextDirectionsExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextDirectionsExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/TextDirectionsExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextDirectionsExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/TextLayouts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextLayouts.xaml -------------------------------------------------------------------------------- /ExampleGallery/TextLayouts.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextLayouts.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/TextOutlines.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextOutlines.xaml -------------------------------------------------------------------------------- /ExampleGallery/TextOutlines.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TextOutlines.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/AboutNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/AboutNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/AboutWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/AboutWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/AnimatedControlNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/AnimatedControlNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/AnimatedControlWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/AnimatedControlWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ArcOptionsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ArcOptionsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ArcOptionsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ArcOptionsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/BackgroundTaskNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/BackgroundTaskNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/BackgroundTaskWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/BackgroundTaskWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/BitmapRotationNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/BitmapRotationNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/BitmapRotationWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/BitmapRotationWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/BurningTextNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/BurningTextNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/BurningTextWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/BurningTextWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CameraEffectNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CameraEffectNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CameraEffectWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CameraEffectWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ControlTransformsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ControlTransformsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ControlTransformsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ControlTransformsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomControlNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomControlNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomControlWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomControlWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomEffectsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomEffectsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomEffectsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomEffectsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomFontsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomFontsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomFontsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomFontsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomTextLayoutsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomTextLayoutsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/CustomTextLayoutsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/CustomTextLayoutsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/DPINarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/DPINarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/DPIWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/DPIWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/DeveloperToolsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/DeveloperToolsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/DeveloperToolsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/DeveloperToolsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/Direct3DInteropNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/Direct3DInteropNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/Direct3DInteropWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/Direct3DInteropWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/DrawImageEmulationsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/DrawImageEmulationsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/DrawImageEmulationsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/DrawImageEmulationsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/EffectRegionMappingNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/EffectRegionMappingNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/EffectRegionMappingWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/EffectRegionMappingWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/EffectsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/EffectsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/EffectsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/EffectsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/FontMetricsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/FontMetricsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/FontMetricsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/FontMetricsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GameofLifeNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GameofLifeNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GameofLifeWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GameofLifeWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GeometryOperationsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GeometryOperationsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GeometryOperationsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GeometryOperationsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GlyphRotationNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GlyphRotationNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GlyphRotationWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GlyphRotationWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GradientMeshNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GradientMeshNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/GradientMeshWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/GradientMeshWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/HistogramNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/HistogramNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/HistogramWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/HistogramWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ImageSourceUpdateRegionNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ImageSourceUpdateRegionNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ImageSourceUpdateRegionWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ImageSourceUpdateRegionWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/InkNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/InkNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/InkWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/InkWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/KeyboardInputNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/KeyboardInputNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/KeyboardInputWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/KeyboardInputWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/LayersNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/LayersNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/LayersWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/LayersWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/MandelbrotNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/MandelbrotNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/MandelbrotWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/MandelbrotWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ParticleSystemNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ParticleSystemNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ParticleSystemWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ParticleSystemWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/PrintingNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/PrintingNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/PrintingWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/PrintingWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ShapesNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ShapesNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/ShapesWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/ShapesWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SpriteBatchPerformanceNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SpriteBatchPerformanceNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SpriteBatchPerformanceWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SpriteBatchPerformanceWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SpriteSheetsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SpriteSheetsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SpriteSheetsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SpriteSheetsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/StrokeStylesNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/StrokeStylesNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/StrokeStylesWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/StrokeStylesWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SubscriptAndSuperscriptNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SubscriptAndSuperscriptNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SubscriptAndSuperscriptWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SubscriptAndSuperscriptWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SvgNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SvgNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/SvgWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/SvgWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TextDirectionsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TextDirectionsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TextDirectionsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TextDirectionsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TextLayoutsNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TextLayoutsNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TextLayoutsWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TextLayoutsWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TextOutlinesNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TextOutlinesNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TextOutlinesWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TextOutlinesWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TypographyNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TypographyNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/TypographyWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/TypographyWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VectorArtNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VectorArtNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VectorArtWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VectorArtWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VideoEffectNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VideoEffectNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VideoEffectWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VideoEffectWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VirtualBitmapNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VirtualBitmapNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VirtualBitmapWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VirtualBitmapWide.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VirtualControlNarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VirtualControlNarrow.png -------------------------------------------------------------------------------- /ExampleGallery/Thumbnails/VirtualControlWide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/Thumbnails/VirtualControlWide.png -------------------------------------------------------------------------------- /ExampleGallery/TypographyExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TypographyExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/TypographyExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/TypographyExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/VectorArt.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VectorArt.xaml -------------------------------------------------------------------------------- /ExampleGallery/VectorArt.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VectorArt.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/VectorArtScene0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VectorArtScene0.cs -------------------------------------------------------------------------------- /ExampleGallery/VectorArtScene1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VectorArtScene1.cs -------------------------------------------------------------------------------- /ExampleGallery/VirtualBitmapExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VirtualBitmapExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/VirtualBitmapExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VirtualBitmapExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/VirtualControlExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VirtualControlExample.xaml -------------------------------------------------------------------------------- /ExampleGallery/VirtualControlExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/VirtualControlExample.xaml.cs -------------------------------------------------------------------------------- /ExampleGallery/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/app.manifest -------------------------------------------------------------------------------- /ExampleGallery/imageTiger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/ExampleGallery/imageTiger.jpg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SimpleSample/SimpleSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample.sln -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/App.xaml -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/App.xaml.cs -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/MainWindow.xaml -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Package.appxmanifest -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/SimpleSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/SimpleSample.csproj -------------------------------------------------------------------------------- /SimpleSample/SimpleSample/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSample/app.manifest -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/App.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/App.idl -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/App.xaml -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/App.xaml.cpp -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/App.xaml.h -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/MainWindow.idl -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/MainWindow.xaml -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/MainWindow.xaml.h -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/Package.appxmanifest -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/SimpleSampleCPP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/SimpleSampleCPP.vcxproj -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/SimpleSampleCPP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/SimpleSampleCPP.vcxproj.filters -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/app.manifest -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/packages.config -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/pch.cpp -------------------------------------------------------------------------------- /SimpleSample/SimpleSampleCPP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Win2D-Samples/HEAD/SimpleSample/SimpleSampleCPP/pch.h --------------------------------------------------------------------------------