I have an Asus EeeTop PC ET1602 with integrated graphics Intel GMA 950 which supports DirectX 9. Despite the fact that DirectX 9 is installed, WPF is running at tier 0. Regarding to the documentation (http://msdn.microsoft.com/en-us/library/ms742196.aspx) it should run at least at tier 1. Do you have any idea why it does not?

link|improve this question
@Dejadine, I've voted to close this question as "belongs on superuser.com"; as it's not really a programming question, msdn link non-withstanding. This sort of issue may well be driver or sytstem configuration related, for which superuser is a better fit. – Rob Aug 29 '10 at 9:54
What is it with some people and the word "regard" – Matti Virkkunen Aug 29 '10 at 10:03
What is it with some people and the phrase "guy with too much time" – Dejadine Aug 29 '10 at 10:38
1  
@Dejadine: Was that supposed to be a witty comeback? Because it sure doesn't strike me as one. – Matti Virkkunen Aug 29 '10 at 10:50
feedback

migrated from stackoverflow.com Aug 31 '10 at 1:44

This question came from our site for professional and enthusiast programmers.

1 Answer

Wikipedia says (proof link):

The GMA 950 shares the same architectural weakness as the GMA 900 no hardware geometry processing. Neither basic hardware transform and lighting, nor more advanced vertex shaders are handled in the GMA hardware.

And MSDN says (by link you have provided):

Rendering Tier 0

A rendering tier value of 0 means that there is no graphics hardware acceleration available for the application on the device. At this tier level, developers should assume that all graphics will be rendered by software with no hardware acceleration. This tier's functionality corresponds to a DirectX version that is less than 9.0.

So for this card there is no hardware acceleration, the Direct X may be installed, but it's features will not be available.

link|improve this answer
Thanks for your answer. – Dejadine Aug 29 '10 at 10:19
feedback

Your Answer

 
or
required, but never shown