RenderCapability.IsPixelShaderVersionSupported(Int16, Int16) Method

Definition

Gets a value that indicates whether the specified pixel shader version is supported.

public:
 static bool IsPixelShaderVersionSupported(short majorVersionRequested, short minorVersionRequested);
public static bool IsPixelShaderVersionSupported (short majorVersionRequested, short minorVersionRequested);
static member IsPixelShaderVersionSupported : int16 * int16 -> bool
Public Shared Function IsPixelShaderVersionSupported (majorVersionRequested As Short, minorVersionRequested As Short) As Boolean

Parameters

majorVersionRequested
Int16

The major version of the pixel shader.

minorVersionRequested
Int16

The minor version of the pixel shader.

Returns

true if the pixel shader version is supported by the current version of WPF; otherwise, false.

Remarks

The IsPixelShaderVersionSupported method returns true if the pixel shader version is supported by the current version of WPF, and if an Effect using the specified major/minor version can run on the GPU.

Applies to

See also