# supportsRenderTextures

> Are render textures supported? (Read Only)

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.5/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

> **Warning:**
>
> **Deprecated.** supportsRenderTextures always returns true, no need to call it

```csharp
public static bool supportsRenderTextures { get; }
```

### Remarks

Returns `true` if the graphics card supports Render Textures in general. Use [SystemInfo.SupportsRenderTextureFormat](/engine/6000.5/script-reference/unityengine/systeminfo/supportsrendertextureformat.md) to check for support for specific render texture format.

Additional Resources: [Render Texture assets](/engine/6000.5/manual/materials-and-shaders/textures/textures-reference/class-render-texture.md), [RenderTexture](/engine/6000.5/script-reference/unityengine/rendertexture.md) class.
