Version: 2020.1
言語: 日本語

RenderTextureReadWrite

enumeration

マニュアルに切り替える

説明

RenderTexture の色空間変換モード

ガンマ化されたリニアレンダリングを使用している場合、変換は行われないため、この設定は使用できません。

When Linear color space is used, then by default non-HDR render textures are considered to contain sRGB data (i.e. "regular colors"), and fragment shaders are considered to output linear color values. So by default the fragment shader color value is converted into sRGB when rendering into a texture; and when sampling the texture in the shader the sRGB colors are converted into linear values. This is the sRGB read-write mode; and the Default mode matches that when linear color space is used. When this mode is set on a render texture, RenderTexture.sRGB will return true.

However, if your render texture will contain non-color data (normals, velocities, other custom values) then you don't want Linear<->sRGB conversions to happen. This is the Linear read-write mode. When this mode is set on a render texture, RenderTexture.sRGB will return false.

Note that some render texture formats are always considered to contain "linear" data and no sRGB conversions are ever performed on them, no matter what is the read-write setting. This is true for all "HDR" (floating point) formats, and other formats like Depth or Shadowmap.

See Also: Linear Color Space, RenderTexture.sRGB, PlayerSettings.colorSpace, GL.sRGBWrite.

変数

Defaultプロジェクトの設定に基づくデフォルトの色空間の変換
Linearレンダーテクスチャにリニア (色以外) のデータが含まれます カラー変換は行われません。
sRGBレンダーテクスチャに sRGB (色) データが含まれており、リニア <-> sRGB 変換が行われます