-
Notifications
You must be signed in to change notification settings - Fork 1.2k
**Does WPF only support 8-bit depth final display output ?** #10486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Since WPF uses Direct3D 9, only 8-bit output is supported. 10-bit is only available on Direct3D 10 hardware level. It is unclear to me whether newer hardware with older Direct3D would allow creating 10-bit output format, but either way the swap chain in WPF would need to be updated. |
Reference: #4569 |
ha thanks, looks like I now know more than I did before :) |
Me too. WPF probably won't change this issue. I'm looking for a way to render manually in DirectX or OpenGL. |
I created Gray8 and Gray16 WriteableBitmap grayscale gradient images, respectively, and they look the same on a 10-bit screen. All color maps to 8-bit depth.
I tried using D3DImage, but I still didn't get a grayscale map with a 10-bit depth display.
So, Does anyone have an example of WPF displaying a 10-bit grayscale map?
The text was updated successfully, but these errors were encountered: