Reputation: 23
UWP provide rich set of controls. Windows.UI.Xaml.Controls.Image control in UWP can be used to display Images . For displaying images using directx , which control , I should use ?? Is directx based rendering inbuilt with Image Control ??
Upvotes: 0
Views: 219
Reputation: 23
Rendering through image control is not hardware accelerated . But you can use Win2D or Angle frameworks for directx based rendering .Canvas and SwapChain panel controls along with these frameworks can be used for directx rendering
Upvotes: 0