본문 바로가기

Windows

Intel Iris Xe Graphics WPF problem.

반응형

Intel Iris Xe Graphics을 사용하는 경우 WPF 프로그램에서 그래픽을 사용하는 경우 문제가 발생합니다.

인텔에서도 인지하고 있는 문제입니다.

 

Iris Xe and AWS Workspaces - Intel Community

 

Iris Xe and AWS Workspaces

Have an issue with the AWS Workspaces client on my HP laptop with 11th Gen i7-1165G7 / Iris Xe.  In the end it feels like a driver issue... The login screen for the app does not show my input, but if I blindly enter username/pw, it will log in.  Then the

community.intel.com

이럴경우 렌더링을 소프트웨어로 처리하면 해결될 수 있습니다.

"System.Windows.Media.RenderOptions.ProcessRenderMode = System.Windows.Interop.RenderMode.SoftwareOnly;"

 

MainWindow.xml.cs 에서 MainWindow를 만드는 부분에 적용하시면 됩니다.

public partial class MainWindow : Window
{
	public MainWindow()
	{
                System.Windows.Media.RenderOptions.ProcessRenderMode = 
        					System.Windows.Interop.RenderMode.SoftwareOnly;
		InitializeComponent();
	}
}

위와 같이 UI 만들기 전에 적용하면 해결됩니다.

 

참조 :

https://docs.microsoft.com/en-us/dotnet/api/system.windows.media.renderoptions.processrendermode?view=net-5.0

 

RenderOptions.ProcessRenderMode Property (System.Windows.Media)

Specifies the render mode preference for the current process.

docs.microsoft.com

 

반응형

'Windows' 카테고리의 다른 글

wsl2 총정리  (0) 2022.01.23
엑셀 배열 입력이 안될때.  (0) 2021.08.08
Visual Studio 텍스트 편집기 왼쪽 아이콘들  (0) 2021.02.22
wsl2 xrdp 사용하기  (0) 2021.02.09
C pointer에 관하여  (0) 2021.02.06