# isDataSRGB

> Returns true if the texture pixel data is in sRGB color space.

## Definition

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

```csharp
public bool isDataSRGB { get; }
```

### Remarks

This property describes whether the texture pixel data on disk, CPU memory, and GPU memory is in sRGB color space. Use [GraphicsFormatUtility.IsSRGBFormat](/engine/6000.7/script-reference/unityengine/experimental/rendering/graphicsformatutility/issrgbformat.md) with [Texture.graphicsFormat](/engine/6000.7/script-reference/unityengine/texture/graphicsformat.md) to check the GPU texture color space, which determines how Unity samples the pixel data on the GPU.

Additional Resources: Linear and Gamma rendering.
