Added basic wrapper for Windows.UI.Xaml.Window implementing IRenderWindow

This commit is contained in:
Yoshi Askharoun
2021-07-16 20:17:23 -05:00
parent 3e3c9a6129
commit 37d2410a51
6 changed files with 271 additions and 8 deletions
+1 -2
View File
@@ -76,12 +76,11 @@ namespace Microsoft.Iris.Session
}
internal void InitializeRenderingDevices(
SKSurface skSurface,
GraphicsDeviceType graphicsType,
GraphicsRenderingQuality renderingQuality,
SoundDeviceType soundType)
{
_engine.Initialize(skSurface, graphicsType, renderingQuality, soundType);
_engine.Initialize(graphicsType, renderingQuality, soundType);
_effectManager = new EffectManager(_session);
_soundManager = new SoundManager(this, _session);
_animationManager = new AnimationManager(_session);