Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


isDataSRGB

Returns true if the texture pixel data is in sRGB color space.
Read time 1 minuteLast updated 7 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
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 with Texture.graphicsFormat to check the GPU texture color space, which determines how Unity samples the pixel data on the GPU.
Additional Resources: Linear and Gamma rendering.