# IsFeatureAvailable(GraphicsDeviceFeature)

> Checks if the current NVIDIA graphics card supports the feature you specify using the GraphicsDeviceFeature enum.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.NVIDIA](/engine/6000.7/script-reference/unityengine/nvidia.md)
* **Assembly:** UnityEngine.NVIDIAModule

```csharp
public bool IsFeatureAvailable(GraphicsDeviceFeature featureID)
```

### Parameters

**** (\[GraphicsDeviceFeature]\(/engine/6000.7/script-reference/unityengine/nvidia/graphicsdevicefeature)): The Feature enum value that represents the feature to check support for.

### Returns

| Type                                                          | Description                                                                       |
| ------------------------------------------------------------- | --------------------------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Returns true if the graphics card supports the feature. Otherwise, returns false. |
