RenderCapability Class
Enables WPF applications to query for the current rendering tier for their associated Dispatcher object and to register for notification of changes.
Assembly: PresentationCore (in PresentationCore.dll)
The RenderCapability type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() | IsShaderEffectSoftwareRenderingSupported | Obsolete. Gets a value that indicates whether the system can render bitmap effects in software. |
![]() ![]() | MaxHardwareTextureSize | Gets the maximum width and height for bitmap creation of the underlying hardware device. |
![]() ![]() | Tier | Gets a value that indicates the rendering tier for the current thread. |
| Name | Description | |
|---|---|---|
![]() ![]() | IsPixelShaderVersionSupported | Gets a value that indicates whether the specified pixel shader version is supported. |
![]() ![]() | IsPixelShaderVersionSupportedInSoftware | Gets a value that indicates whether the specified pixel shader version can be rendered in software on the current system. |
![]() ![]() | MaxPixelShaderInstructionSlots | Gets the maximum number of instruction slots supported by the specified pixel shader version. |
| Name | Description | |
|---|---|---|
![]() ![]() | TierChanged | Occurs when the rendering tier has changed for the Dispatcher object of the current thread. |
A rendering tier defines a level of graphics hardware capability and performance for a device that runs a WPF application. The features of the graphics hardware that most affect the rendering tier levels are the following:
Video RAM: The amount of video memory on the graphics hardware determines the size and number of buffers that can be used for compositing graphics.
Pixel Shader: A pixel shader is a graphics processing function that calculates effects on a per-pixel basis. Depending on the resolution of the displayed graphics, there could be several million pixels that need to be processed for each display frame.
Vertex Shader: A vertex shader is a graphics processing function that performs mathematical operations on the vertex data of the object.
Multitexture Support: Multitexture support refers to the ability to apply two or more distinct textures during a blending operation on a 3D graphics object. The degree of multitexture support is determined by the number of multitexture units on the graphics hardware.
The pixel shader, vertex shader, and multitexture features are used to define specific DirectX version levels, which, in turn, are used to define the different rendering tiers in WPF. For a full description of the rendering tiers, see Graphics Rendering Tiers.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
