tags:

views:

484

answers:

3

Is there any way I can force WPF rendering tiers mentioned here? http://msdn.microsoft.com/en-us/library/ms742196.aspx

For example I am on tier 2, but I want to simulate the application in tier 1 or 0 scenario.

+1  A: 

You can do this by modifying the registry on your system.

In general, you'll want to turn on the reference rasterizer or disable hardware acceleration.

For details, see MSDN's page for Graphics Rendering Registry Settings.

Reed Copsey
A: 

You could force tier-0 by just turning on window transparency.

Armentage
A: 

.NET 4.0 provides the ability to force software rendering in code. See my answer here.

RenderMode only supports Default and SoftwareOnly. However I would like to simulate Tier 1 on a Tier 2 machine.
Kai Wang