using System;
using System.Collections.Generic;
using UnityEngine.Assertions;
using UnityEngine.Experimental.Rendering;
namespace UnityEngine.Rendering
{
///
/// Scaled function used to compute the size of a RTHandle for the current frame.
///
/// Reference size of the RTHandle system for the frame.
/// The size of the RTHandled computed from the reference size.
public delegate Vector2Int ScaleFunc(Vector2Int size);
///
/// List of properties of the RTHandle System for the current frame.
///
public struct RTHandleProperties
{
///
/// Size set as reference at the previous frame
///
public Vector2Int previousViewportSize;
///
/// Size of the render targets at the previous frame
///
public Vector2Int previousRenderTargetSize;
///
/// Size set as reference at the current frame
///
public Vector2Int currentViewportSize;
///
/// Size of the render targets at the current frame
///
public Vector2Int currentRenderTargetSize;
///
/// Scale factor from RTHandleSystem max size to requested reference size (referenceSize/maxSize)
/// (x,y) current frame (z,w) last frame (this is only used for buffered RTHandle Systems)
///
public Vector4 rtHandleScale;
}
///
/// System managing a set of RTHandle textures
///
public partial class RTHandleSystem : IDisposable
{
internal enum ResizeMode
{
Auto,
OnDemand
}
// Parameters for auto-scaled Render Textures
bool m_HardwareDynamicResRequested = false;
HashSet m_AutoSizedRTs;
RTHandle[] m_AutoSizedRTsArray; // For fast iteration
HashSet m_ResizeOnDemandRTs;
RTHandleProperties m_RTHandleProperties;
///
/// Current properties of the RTHandle System.
///
public RTHandleProperties rtHandleProperties { get { return m_RTHandleProperties; } }
int m_MaxWidths = 0;
int m_MaxHeights = 0;
#if UNITY_EDITOR
// In editor every now and then we must reset the size of the rthandle system if it was set very high and then switched back to a much smaller scale.
int m_FramesSinceLastReset = 0;
#endif
///
/// RTHandleSystem constructor.
///
public RTHandleSystem()
{
m_AutoSizedRTs = new HashSet();
m_ResizeOnDemandRTs = new HashSet();
m_MaxWidths = 1;
m_MaxHeights = 1;
}
///
/// Disposable pattern implementation
///
public void Dispose()
{
Dispose(true);
}
///
/// Initialize the RTHandle system.
///
/// Initial reference rendering width.
/// Initial reference rendering height.
public void Initialize(int width, int height)
{
if (m_AutoSizedRTs.Count != 0)
{
string leakingResources = "Unreleased RTHandles:";
foreach (var rt in m_AutoSizedRTs)
{
leakingResources = string.Format("{0}\n {1}", leakingResources, rt.name);
}
Debug.LogError(string.Format("RTHandle.Initialize should only be called once before allocating any Render Texture. This may be caused by an unreleased RTHandle resource.\n{0}\n", leakingResources));
}
m_MaxWidths = width;
m_MaxHeights = height;
m_HardwareDynamicResRequested = DynamicResolutionHandler.instance.RequestsHardwareDynamicResolution();
}
///
/// Release memory of a RTHandle from the RTHandle System
///
/// RTHandle that should be released.
public void Release(RTHandle rth)
{
if (rth != null)
{
Assert.AreEqual(this, rth.m_Owner);
rth.Release();
}
}
internal void Remove(RTHandle rth)
{
m_AutoSizedRTs.Remove(rth);
}
///
/// Reset the reference size of the system and reallocate all textures.
///
/// New width.
/// New height.
public void ResetReferenceSize(int width, int height)
{
m_MaxWidths = width;
m_MaxHeights = height;
SetReferenceSize(width, height, reset: true);
}
///
/// Sets the reference rendering size for subsequent rendering for the RTHandle System
///
/// Reference rendering width for subsequent rendering.
/// Reference rendering height for subsequent rendering.
public void SetReferenceSize(int width, int height)
{
SetReferenceSize(width, height, false);
}
///
/// Sets the reference rendering size for subsequent rendering for the RTHandle System
///
/// Reference rendering width for subsequent rendering.
/// Reference rendering height for subsequent rendering.
/// If set to true, the new width and height will override the old values even if they are not bigger.
public void SetReferenceSize(int width, int height, bool reset)
{
m_RTHandleProperties.previousViewportSize = m_RTHandleProperties.currentViewportSize;
m_RTHandleProperties.previousRenderTargetSize = m_RTHandleProperties.currentRenderTargetSize;
Vector2 lastFrameMaxSize = new Vector2(GetMaxWidth(), GetMaxHeight());
width = Mathf.Max(width, 1);
height = Mathf.Max(height, 1);
#if UNITY_EDITOR
// If the reference size is significantly higher than the current actualWidth/Height and it is larger than 1440p dimensions, we reset the reference size every several frames
// in editor to avoid issues if a large resolution was temporarily set.
const int resetInterval = 100;
if (((m_MaxWidths / (float)width) > 2.0f && m_MaxWidths > 2560) ||
((m_MaxHeights / (float)height) > 2.0f && m_MaxHeights > 1440))
{
if (m_FramesSinceLastReset > resetInterval)
{
m_FramesSinceLastReset = 0;
ResetReferenceSize(width, height);
}
m_FramesSinceLastReset++;
}
else
{
// If some cameras is a reasonable resolution size, we dont reset.
m_FramesSinceLastReset = 0;
}
#endif
bool sizeChanged = width > GetMaxWidth() || height > GetMaxHeight() || reset;
if (sizeChanged)
{
Resize(width, height, sizeChanged);
}
m_RTHandleProperties.currentViewportSize = new Vector2Int(width, height);
m_RTHandleProperties.currentRenderTargetSize = new Vector2Int(GetMaxWidth(), GetMaxHeight());
// If the currentViewportSize is 0, it mean we are the first frame of rendering (can happen when doing domain reload for example or for reflection probe)
// in this case the scalePrevious below could be invalided. But some effect rely on having a correct value like TAA with the history buffer for the first frame.
// to work around this, when we detect that size is 0, we setup previous size to current size.
if (m_RTHandleProperties.previousViewportSize.x == 0)
{
m_RTHandleProperties.previousViewportSize = m_RTHandleProperties.currentViewportSize;
m_RTHandleProperties.previousRenderTargetSize = m_RTHandleProperties.currentRenderTargetSize;
lastFrameMaxSize = new Vector2(GetMaxWidth(), GetMaxHeight());
}
var scales = CalculateRatioAgainstMaxSize(m_RTHandleProperties.currentViewportSize);
if (DynamicResolutionHandler.instance.HardwareDynamicResIsEnabled() && m_HardwareDynamicResRequested)
{
// Making the final scale in 'drs' space, since the final scale must account for rounding pixel values.
m_RTHandleProperties.rtHandleScale = new Vector4(scales.x, scales.y, m_RTHandleProperties.rtHandleScale.x, m_RTHandleProperties.rtHandleScale.y);
}
else
{
Vector2 scalePrevious = m_RTHandleProperties.previousViewportSize / lastFrameMaxSize;
m_RTHandleProperties.rtHandleScale = new Vector4(scales.x, scales.y, scalePrevious.x, scalePrevious.y);
}
}
internal Vector2 CalculateRatioAgainstMaxSize(in Vector2Int viewportSize)
{
Vector2 maxSize = new Vector2(GetMaxWidth(), GetMaxHeight());
if (DynamicResolutionHandler.instance.HardwareDynamicResIsEnabled() && m_HardwareDynamicResRequested && viewportSize != DynamicResolutionHandler.instance.finalViewport)
{
//for hardware resolution, the final goal is to figure out a scale from finalViewport into maxViewport.
//This is however wrong! because the actualViewport might not fit the finalViewport perfectly, due to rounding.
//A correct way is to instead downscale the maxViewport, and keep the final scale in terms of downsampled buffers.
Vector2 currentScale = (Vector2)viewportSize / (Vector2)DynamicResolutionHandler.instance.finalViewport;
maxSize = DynamicResolutionHandler.instance.ApplyScalesOnSize(new Vector2Int(GetMaxWidth(), GetMaxHeight()), currentScale);
}
return new Vector2((float)viewportSize.x / maxSize.x, (float)viewportSize.y / maxSize.y);
}
///
/// Enable or disable hardware dynamic resolution for the RTHandle System
///
/// State of hardware dynamic resolution.
public void SetHardwareDynamicResolutionState(bool enableHWDynamicRes)
{
if (enableHWDynamicRes != m_HardwareDynamicResRequested)
{
m_HardwareDynamicResRequested = enableHWDynamicRes;
Array.Resize(ref m_AutoSizedRTsArray, m_AutoSizedRTs.Count);
m_AutoSizedRTs.CopyTo(m_AutoSizedRTsArray);
for (int i = 0, c = m_AutoSizedRTsArray.Length; i < c; ++i)
{
var rth = m_AutoSizedRTsArray[i];
// Grab the render texture
var renderTexture = rth.m_RT;
if (renderTexture)
{
// Free the previous version
renderTexture.Release();
renderTexture.useDynamicScale = m_HardwareDynamicResRequested && rth.m_EnableHWDynamicScale;
// Create the render texture
renderTexture.Create();
}
}
}
}
internal void SwitchResizeMode(RTHandle rth, ResizeMode mode)
{
// Don't do anything is scaling isn't enabled on this RT
// TODO: useScaling should probably be moved to ResizeMode.Fixed or something
if (!rth.useScaling)
return;
switch (mode)
{
case ResizeMode.OnDemand:
m_AutoSizedRTs.Remove(rth);
m_ResizeOnDemandRTs.Add(rth);
break;
case ResizeMode.Auto:
// Resize now so it is consistent with other auto resize RTHs
if (m_ResizeOnDemandRTs.Contains(rth))
DemandResize(rth);
m_ResizeOnDemandRTs.Remove(rth);
m_AutoSizedRTs.Add(rth);
break;
}
}
void DemandResize(RTHandle rth)
{
Assert.IsTrue(m_ResizeOnDemandRTs.Contains(rth), "The RTHandle is not an resize on demand handle in this RTHandleSystem. Please call SwitchToResizeOnDemand(rth, true) before resizing on demand.");
// Grab the render texture
var rt = rth.m_RT;
rth.referenceSize = new Vector2Int(m_MaxWidths, m_MaxHeights);
var scaledSize = rth.GetScaledSize(rth.referenceSize);
scaledSize = Vector2Int.Max(Vector2Int.one, scaledSize);
// Did the size change?
var sizeChanged = rt.width != scaledSize.x || rt.height != scaledSize.y;
if (sizeChanged)
{
// Free this render texture
rt.Release();
// Update the size
rt.width = scaledSize.x;
rt.height = scaledSize.y;
// Generate a new name
rt.name = CoreUtils.GetRenderTargetAutoName(
rt.width,
rt.height,
rt.volumeDepth,
rt.graphicsFormat,
rt.dimension,
rth.m_Name,
mips: rt.useMipMap,
enableMSAA: rth.m_EnableMSAA,
msaaSamples: (MSAASamples)rt.antiAliasing,
dynamicRes: rt.useDynamicScale
);
// Create the new texture
rt.Create();
}
}
///
/// Returns the maximum allocated width of the RTHandle System.
///
/// Maximum allocated width of the RTHandle System.
public int GetMaxWidth() { return m_MaxWidths; }
///
/// Returns the maximum allocated height of the RTHandle System.
///
/// Maximum allocated height of the RTHandle System.
public int GetMaxHeight() { return m_MaxHeights; }
void Dispose(bool disposing)
{
if (disposing)
{
Array.Resize(ref m_AutoSizedRTsArray, m_AutoSizedRTs.Count);
m_AutoSizedRTs.CopyTo(m_AutoSizedRTsArray);
for (int i = 0, c = m_AutoSizedRTsArray.Length; i < c; ++i)
{
var rt = m_AutoSizedRTsArray[i];
Release(rt);
}
m_AutoSizedRTs.Clear();
Array.Resize(ref m_AutoSizedRTsArray, m_ResizeOnDemandRTs.Count);
m_ResizeOnDemandRTs.CopyTo(m_AutoSizedRTsArray);
for (int i = 0, c = m_AutoSizedRTsArray.Length; i < c; ++i)
{
var rt = m_AutoSizedRTsArray[i];
Release(rt);
}
m_ResizeOnDemandRTs.Clear();
m_AutoSizedRTsArray = null;
}
}
void Resize(int width, int height, bool sizeChanged)
{
m_MaxWidths = Math.Max(width, m_MaxWidths);
m_MaxHeights = Math.Max(height, m_MaxHeights);
var maxSize = new Vector2Int(m_MaxWidths, m_MaxHeights);
Array.Resize(ref m_AutoSizedRTsArray, m_AutoSizedRTs.Count);
m_AutoSizedRTs.CopyTo(m_AutoSizedRTsArray);
for (int i = 0, c = m_AutoSizedRTsArray.Length; i < c; ++i)
{
// Grab the RT Handle
var rth = m_AutoSizedRTsArray[i];
// Force its new reference size
rth.referenceSize = maxSize;
// Grab the render texture
var renderTexture = rth.m_RT;
// Free the previous version
renderTexture.Release();
// Get the scaled size
var scaledSize = rth.GetScaledSize(maxSize);
renderTexture.width = Mathf.Max(scaledSize.x, 1);
renderTexture.height = Mathf.Max(scaledSize.y, 1);
// Regenerate the name
renderTexture.name = CoreUtils.GetRenderTargetAutoName(renderTexture.width, renderTexture.height, renderTexture.volumeDepth, renderTexture.graphicsFormat, renderTexture.dimension, rth.m_Name, mips: renderTexture.useMipMap, enableMSAA: rth.m_EnableMSAA, msaaSamples: (MSAASamples)renderTexture.antiAliasing, dynamicRes: renderTexture.useDynamicScale);
// Create the render texture
renderTexture.Create();
}
}
///
/// Allocate a new fixed sized RTHandle.
///
/// With of the RTHandle.
/// Heigh of the RTHandle.
/// Number of slices of the RTHandle.
/// Bit depths of a depth buffer.
/// GraphicsFormat of a color buffer.
/// Filtering mode of the RTHandle.
/// Addressing mode of the RTHandle.
/// Texture dimension of the RTHandle.
/// Set to true to enable UAV random read writes on the texture.
/// Set to true if the texture should have mipmaps.
/// Set to true to automatically generate mipmaps.
/// Set to true if the depth buffer should be used as a shadow map.
/// Anisotropic filtering level.
/// Bias applied to mipmaps during filtering.
/// Number of MSAA samples for the RTHandle.
/// Set to true if the texture needs to be bound as a multisampled texture in the shader.
/// Set to true to use hardware dynamic scaling.
/// Use this property to set the render texture memoryless modes.
/// Name of the RTHandle.
///
public RTHandle Alloc(
int width,
int height,
int slices = 1,
DepthBits depthBufferBits = DepthBits.None,
GraphicsFormat colorFormat = GraphicsFormat.R8G8B8A8_SRGB,
FilterMode filterMode = FilterMode.Point,
TextureWrapMode wrapMode = TextureWrapMode.Repeat,
TextureDimension dimension = TextureDimension.Tex2D,
bool enableRandomWrite = false,
bool useMipMap = false,
bool autoGenerateMips = true,
bool isShadowMap = false,
int anisoLevel = 1,
float mipMapBias = 0f,
MSAASamples msaaSamples = MSAASamples.None,
bool bindTextureMS = false,
bool useDynamicScale = false,
RenderTextureMemoryless memoryless = RenderTextureMemoryless.None,
string name = ""
)
{
return Alloc(width, height, wrapMode, wrapMode, wrapMode, slices, depthBufferBits, colorFormat, filterMode, dimension, enableRandomWrite, useMipMap,
autoGenerateMips, isShadowMap, anisoLevel, mipMapBias, msaaSamples, bindTextureMS, useDynamicScale, memoryless, name);
}
///
/// Allocate a new fixed sized RTHandle.
///
/// With of the RTHandle.
/// Heigh of the RTHandle.
/// U coordinate wrapping mode of the RTHandle.
/// V coordinate wrapping mode of the RTHandle.
/// W coordinate wrapping mode of the RTHandle.
/// Number of slices of the RTHandle.
/// Bit depths of a depth buffer.
/// GraphicsFormat of a color buffer.
/// Filtering mode of the RTHandle.
/// Texture dimension of the RTHandle.
/// Set to true to enable UAV random read writes on the texture.
/// Set to true if the texture should have mipmaps.
/// Set to true to automatically generate mipmaps.
/// Set to true if the depth buffer should be used as a shadow map.
/// Anisotropic filtering level.
/// Bias applied to mipmaps during filtering.
/// Number of MSAA samples for the RTHandle.
/// Set to true if the texture needs to be bound as a multisampled texture in the shader.
/// Set to true to use hardware dynamic scaling.
/// Use this property to set the render texture memoryless modes.
/// Name of the RTHandle.
///
public RTHandle Alloc(
int width,
int height,
TextureWrapMode wrapModeU,
TextureWrapMode wrapModeV,
TextureWrapMode wrapModeW = TextureWrapMode.Repeat,
int slices = 1,
DepthBits depthBufferBits = DepthBits.None,
GraphicsFormat colorFormat = GraphicsFormat.R8G8B8A8_SRGB,
FilterMode filterMode = FilterMode.Point,
TextureDimension dimension = TextureDimension.Tex2D,
bool enableRandomWrite = false,
bool useMipMap = false,
bool autoGenerateMips = true,
bool isShadowMap = false,
int anisoLevel = 1,
float mipMapBias = 0f,
MSAASamples msaaSamples = MSAASamples.None,
bool bindTextureMS = false,
bool useDynamicScale = false,
RenderTextureMemoryless memoryless = RenderTextureMemoryless.None,
string name = ""
)
{
bool enableMSAA = msaaSamples != MSAASamples.None;
if (!enableMSAA && bindTextureMS == true)
{
Debug.LogWarning("RTHandle allocated without MSAA but with bindMS set to true, forcing bindMS to false.");
bindTextureMS = false;
}
// We need to handle this in an explicit way since GraphicsFormat does not expose depth formats. TODO: Get rid of this branch once GraphicsFormat'll expose depth related formats
RenderTexture rt;
if (isShadowMap || depthBufferBits != DepthBits.None)
{
RenderTextureFormat format = isShadowMap ? RenderTextureFormat.Shadowmap : RenderTextureFormat.Depth;
rt = new RenderTexture(width, height, (int)depthBufferBits, format, RenderTextureReadWrite.Linear)
{
hideFlags = HideFlags.HideAndDontSave,
volumeDepth = slices,
filterMode = filterMode,
wrapModeU = wrapModeU,
wrapModeV = wrapModeV,
wrapModeW = wrapModeW,
dimension = dimension,
enableRandomWrite = enableRandomWrite,
useMipMap = useMipMap,
autoGenerateMips = autoGenerateMips,
anisoLevel = anisoLevel,
mipMapBias = mipMapBias,
antiAliasing = (int)msaaSamples,
bindTextureMS = bindTextureMS,
useDynamicScale = m_HardwareDynamicResRequested && useDynamicScale,
memorylessMode = memoryless,
name = CoreUtils.GetRenderTargetAutoName(width, height, slices, format, name, mips: useMipMap, enableMSAA: enableMSAA, msaaSamples: msaaSamples)
};
}
else
{
rt = new RenderTexture(width, height, (int)depthBufferBits, colorFormat)
{
hideFlags = HideFlags.HideAndDontSave,
volumeDepth = slices,
filterMode = filterMode,
wrapModeU = wrapModeU,
wrapModeV = wrapModeV,
wrapModeW = wrapModeW,
dimension = dimension,
enableRandomWrite = enableRandomWrite,
useMipMap = useMipMap,
autoGenerateMips = autoGenerateMips,
anisoLevel = anisoLevel,
mipMapBias = mipMapBias,
antiAliasing = (int)msaaSamples,
bindTextureMS = bindTextureMS,
useDynamicScale = m_HardwareDynamicResRequested && useDynamicScale,
memorylessMode = memoryless,
name = CoreUtils.GetRenderTargetAutoName(width, height, slices, colorFormat, dimension, name, mips: useMipMap, enableMSAA: enableMSAA, msaaSamples: msaaSamples, dynamicRes: useDynamicScale)
};
}
rt.Create();
var newRT = new RTHandle(this);
newRT.SetRenderTexture(rt);
newRT.useScaling = false;
newRT.m_EnableRandomWrite = enableRandomWrite;
newRT.m_EnableMSAA = enableMSAA;
newRT.m_EnableHWDynamicScale = useDynamicScale;
newRT.m_Name = name;
newRT.referenceSize = new Vector2Int(width, height);
return newRT;
}
// Next two methods are used to allocate RenderTexture that depend on the frame settings (resolution and msaa for now)
// RenderTextures allocated this way are meant to be defined by a scale of camera resolution (full/half/quarter resolution for example).
// The idea is that internally the system will scale up the size of all render texture so that it amortizes with time and not reallocate when a smaller size is required (which is what happens with TemporaryRTs).
// Since MSAA cannot be changed on the fly for a given RenderTexture, a separate instance will be created if the user requires it. This instance will be the one used after the next call of SetReferenceSize if MSAA is required.
///
/// Allocate a new automatically sized RTHandle.
///
/// Constant scale for the RTHandle size computation.
/// Number of slices of the RTHandle.
/// Bit depths of a depth buffer.
/// GraphicsFormat of a color buffer.
/// Filtering mode of the RTHandle.
/// Addressing mode of the RTHandle.
/// Texture dimension of the RTHandle.
/// Set to true to enable UAV random read writes on the texture.
/// Set to true if the texture should have mipmaps.
/// Set to true to automatically generate mipmaps.
/// Set to true if the depth buffer should be used as a shadow map.
/// Anisotropic filtering level.
/// Bias applied to mipmaps during filtering.
/// Number of MSAA samples.
/// Set to true if the texture needs to be bound as a multisampled texture in the shader.
/// Set to true to use hardware dynamic scaling.
/// Use this property to set the render texture memoryless modes.
/// Name of the RTHandle.
/// A new RTHandle.
public RTHandle Alloc(
Vector2 scaleFactor,
int slices = 1,
DepthBits depthBufferBits = DepthBits.None,
GraphicsFormat colorFormat = GraphicsFormat.R8G8B8A8_SRGB,
FilterMode filterMode = FilterMode.Point,
TextureWrapMode wrapMode = TextureWrapMode.Repeat,
TextureDimension dimension = TextureDimension.Tex2D,
bool enableRandomWrite = false,
bool useMipMap = false,
bool autoGenerateMips = true,
bool isShadowMap = false,
int anisoLevel = 1,
float mipMapBias = 0f,
MSAASamples msaaSamples = MSAASamples.None,
bool bindTextureMS = false,
bool useDynamicScale = false,
RenderTextureMemoryless memoryless = RenderTextureMemoryless.None,
string name = ""
)
{
int width = Mathf.Max(Mathf.RoundToInt(scaleFactor.x * GetMaxWidth()), 1);
int height = Mathf.Max(Mathf.RoundToInt(scaleFactor.y * GetMaxHeight()), 1);
var rth = AllocAutoSizedRenderTexture(width,
height,
slices,
depthBufferBits,
colorFormat,
filterMode,
wrapMode,
dimension,
enableRandomWrite,
useMipMap,
autoGenerateMips,
isShadowMap,
anisoLevel,
mipMapBias,
msaaSamples,
bindTextureMS,
useDynamicScale,
memoryless,
name
);
rth.referenceSize = new Vector2Int(width, height);
rth.scaleFactor = scaleFactor;
return rth;
}
//
// You can provide your own scaling function for advanced scaling schemes (e.g. scaling to
// the next POT). The function takes a Vec2 as parameter that holds max width & height
// values for the current manager context and returns a Vec2 of the final size in pixels.
//
// var rth = Alloc(
// size => new Vector2Int(size.x / 2, size.y),
// [...]
// );
//
///
/// Allocate a new automatically sized RTHandle.
///
/// Function used for the RTHandle size computation.
/// Number of slices of the RTHandle.
/// Bit depths of a depth buffer.
/// GraphicsFormat of a color buffer.
/// Filtering mode of the RTHandle.
/// Addressing mode of the RTHandle.
/// Texture dimension of the RTHandle.
/// Set to true to enable UAV random read writes on the texture.
/// Set to true if the texture should have mipmaps.
/// Set to true to automatically generate mipmaps.
/// Set to true if the depth buffer should be used as a shadow map.
/// Anisotropic filtering level.
/// Bias applied to mipmaps during filtering.
/// Number of MSAA samples.
/// Set to true if the texture needs to be bound as a multisampled texture in the shader.
/// Set to true to use hardware dynamic scaling.
/// Use this property to set the render texture memoryless modes.
/// Name of the RTHandle.
/// A new RTHandle.
public RTHandle Alloc(
ScaleFunc scaleFunc,
int slices = 1,
DepthBits depthBufferBits = DepthBits.None,
GraphicsFormat colorFormat = GraphicsFormat.R8G8B8A8_SRGB,
FilterMode filterMode = FilterMode.Point,
TextureWrapMode wrapMode = TextureWrapMode.Repeat,
TextureDimension dimension = TextureDimension.Tex2D,
bool enableRandomWrite = false,
bool useMipMap = false,
bool autoGenerateMips = true,
bool isShadowMap = false,
int anisoLevel = 1,
float mipMapBias = 0f,
MSAASamples msaaSamples = MSAASamples.None,
bool bindTextureMS = false,
bool useDynamicScale = false,
RenderTextureMemoryless memoryless = RenderTextureMemoryless.None,
string name = ""
)
{
var scaleFactor = scaleFunc(new Vector2Int(GetMaxWidth(), GetMaxHeight()));
int width = Mathf.Max(scaleFactor.x, 1);
int height = Mathf.Max(scaleFactor.y, 1);
var rth = AllocAutoSizedRenderTexture(width,
height,
slices,
depthBufferBits,
colorFormat,
filterMode,
wrapMode,
dimension,
enableRandomWrite,
useMipMap,
autoGenerateMips,
isShadowMap,
anisoLevel,
mipMapBias,
msaaSamples,
bindTextureMS,
useDynamicScale,
memoryless,
name
);
rth.referenceSize = new Vector2Int(width, height);
rth.scaleFunc = scaleFunc;
return rth;
}
// Internal function
RTHandle AllocAutoSizedRenderTexture(
int width,
int height,
int slices,
DepthBits depthBufferBits,
GraphicsFormat colorFormat,
FilterMode filterMode,
TextureWrapMode wrapMode,
TextureDimension dimension,
bool enableRandomWrite,
bool useMipMap,
bool autoGenerateMips,
bool isShadowMap,
int anisoLevel,
float mipMapBias,
MSAASamples msaaSamples,
bool bindTextureMS,
bool useDynamicScale,
RenderTextureMemoryless memoryless,
string name
)
{
bool enableMSAA = msaaSamples != MSAASamples.None;
// Here user made a mistake in setting up msaa/bindMS, hence the warning
if (!enableMSAA && bindTextureMS == true)
{
Debug.LogWarning("RTHandle allocated without MSAA but with bindMS set to true, forcing bindMS to false.");
bindTextureMS = false;
}
// MSAA Does not support random read/write.
if (enableMSAA && (enableRandomWrite == true))
{
Debug.LogWarning("RTHandle that is MSAA-enabled cannot allocate MSAA RT with 'enableRandomWrite = true'.");
enableRandomWrite = false;
}
// We need to handle this in an explicit way since GraphicsFormat does not expose depth formats. TODO: Get rid of this branch once GraphicsFormat'll expose depth related formats
RenderTexture rt;
if (isShadowMap || depthBufferBits != DepthBits.None)
{
RenderTextureFormat format = isShadowMap ? RenderTextureFormat.Shadowmap : RenderTextureFormat.Depth;
GraphicsFormat stencilFormat = isShadowMap ? GraphicsFormat.None : GraphicsFormat.R8_UInt;
rt = new RenderTexture(width, height, (int)depthBufferBits, format, RenderTextureReadWrite.Linear)
{
hideFlags = HideFlags.HideAndDontSave,
volumeDepth = slices,
filterMode = filterMode,
wrapMode = wrapMode,
dimension = dimension,
enableRandomWrite = enableRandomWrite,
useMipMap = useMipMap,
autoGenerateMips = autoGenerateMips,
anisoLevel = anisoLevel,
mipMapBias = mipMapBias,
antiAliasing = (int)msaaSamples,
bindTextureMS = bindTextureMS,
useDynamicScale = m_HardwareDynamicResRequested && useDynamicScale,
memorylessMode = memoryless,
stencilFormat = stencilFormat,
name = CoreUtils.GetRenderTargetAutoName(width, height, slices, colorFormat, dimension, name, mips: useMipMap, enableMSAA: enableMSAA, msaaSamples: msaaSamples, dynamicRes: useDynamicScale)
};
}
else
{
rt = new RenderTexture(width, height, (int)depthBufferBits, colorFormat)
{
hideFlags = HideFlags.HideAndDontSave,
volumeDepth = slices,
filterMode = filterMode,
wrapMode = wrapMode,
dimension = dimension,
enableRandomWrite = enableRandomWrite,
useMipMap = useMipMap,
autoGenerateMips = autoGenerateMips,
anisoLevel = anisoLevel,
mipMapBias = mipMapBias,
antiAliasing = (int)msaaSamples,
bindTextureMS = bindTextureMS,
useDynamicScale = m_HardwareDynamicResRequested && useDynamicScale,
memorylessMode = memoryless,
name = CoreUtils.GetRenderTargetAutoName(width, height, slices, colorFormat, dimension, name, mips: useMipMap, enableMSAA: enableMSAA, msaaSamples: msaaSamples, dynamicRes: useDynamicScale)
};
}
rt.Create();
var rth = new RTHandle(this);
rth.SetRenderTexture(rt);
rth.m_EnableMSAA = enableMSAA;
rth.m_EnableRandomWrite = enableRandomWrite;
rth.useScaling = true;
rth.m_EnableHWDynamicScale = useDynamicScale;
rth.m_Name = name;
m_AutoSizedRTs.Add(rth);
return rth;
}
///
/// Allocate a RTHandle from a regular RenderTexture.
///
/// Input texture
/// A new RTHandle referencing the input texture.
public RTHandle Alloc(RenderTexture texture)
{
var rth = new RTHandle(this);
rth.SetRenderTexture(texture);
rth.m_EnableMSAA = false;
rth.m_EnableRandomWrite = false;
rth.useScaling = false;
rth.m_EnableHWDynamicScale = false;
rth.m_Name = texture.name;
return rth;
}
///
/// Allocate a RTHandle from a regular Texture.
///
/// Input texture
/// A new RTHandle referencing the input texture.
public RTHandle Alloc(Texture texture)
{
var rth = new RTHandle(this);
rth.SetTexture(texture);
rth.m_EnableMSAA = false;
rth.m_EnableRandomWrite = false;
rth.useScaling = false;
rth.m_EnableHWDynamicScale = false;
rth.m_Name = texture.name;
return rth;
}
///
/// Allocate a RTHandle from a regular render target identifier.
///
/// Input render target identifier.
/// A new RTHandle referencing the input render target identifier.
public RTHandle Alloc(RenderTargetIdentifier texture)
{
return Alloc(texture, "");
}
///
/// Allocate a RTHandle from a regular render target identifier.
///
/// Input render target identifier.
/// Name of the texture.
/// A new RTHandle referencing the input render target identifier.
public RTHandle Alloc(RenderTargetIdentifier texture, string name)
{
var rth = new RTHandle(this);
rth.SetTexture(texture);
rth.m_EnableMSAA = false;
rth.m_EnableRandomWrite = false;
rth.useScaling = false;
rth.m_EnableHWDynamicScale = false;
rth.m_Name = name;
return rth;
}
private static RTHandle Alloc(RTHandle tex)
{
Debug.LogError("Allocation a RTHandle from another one is forbidden.");
return null;
}
internal string DumpRTInfo()
{
string result = "";
Array.Resize(ref m_AutoSizedRTsArray, m_AutoSizedRTs.Count);
m_AutoSizedRTs.CopyTo(m_AutoSizedRTsArray);
for (int i = 0, c = m_AutoSizedRTsArray.Length; i < c; ++i)
{
var rt = m_AutoSizedRTsArray[i].rt;
result = string.Format("{0}\nRT ({1})\t Format: {2} W: {3} H {4}\n", result, i, rt.format, rt.width, rt.height);
}
return result;
}
}
}