# GetFeatureVersion(GraphicsDeviceFeature, out uint, out uint, out uint)

> Gets the version of each feature.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.AMD](/engine/6000.7/script-reference/unityengine/amd.md)
* **Assembly:** UnityEngine.AMDModule

## GetFeatureVersion(GraphicsDeviceFeature, uint, uint, uint)

```csharp
public static bool GetFeatureVersion(GraphicsDeviceFeature feature, out uint major, out uint minor, out uint patch)
```

### Parameters

**** (\[GraphicsDeviceFeature]\(/engine/6000.7/script-reference/unityengine/amd/graphicsdevicefeature)): The feature to query its version.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The major version of the feature.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The minor version of the feature.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The patch version of the feature.

### Returns

| Type                                                          | Description                                                |
| ------------------------------------------------------------- | ---------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | Returns true if the query was successful, false otherwise. |
