Search Issue Tracker
By Design
Votes
1
Found in
5.6.1f1
Issue ID
914114
Regression
Yes
Visual artifacts appear when rendering to render texture which uses a specific shader
To reproduce:
1. Open the project, attached by user (RenderTexturesIssue.zip)
2. Open "Test" scene
3. Enter Play mode
4. Move Cube game object in the scene
Expected: no trail objects are rendered to the render texture when the texture uses the specific shader
Actual: copies of the object are renderer when the object is moved
Reproduced in 5.6.0a1, 5.6.1f1, 2017.1.0b6, 2017.1.0a1
Did not reproduce in 5.5.3p2
Regression introduced in 5.6.0a1
Won't fix: This was working before due to a side effect of how we passed the image effects texture into the OnRenderImage. This has changed now and the destination may not be implicity bound. You can fix this issue by binding the texture before doing the clear:
private void OnRenderImage(RenderTexture source, RenderTexture destination)
{
RenderTexture.active = destination;
GL.Clear(false, true, Color.black);
Graphics.Blit(rt, destination, postMat);
}
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Opening Terrain Prefab in Prefab Editing Mode throws "NullReferenceException" error
- [Search] Dragging query pills put them behind the search text field
- A CustomPropertyDrawer that returns a PropertyField for a property named the same as a child field will not render all child fields
- Graphics Settings shows default values instead of the real values in the Rendering Debugger when Volume.profile is assigned via script
- Deleting multiple Tags throws “NullReferenceException”, and "Retrieving array element that was out of bounds" errors when holding the Enter key
Ladace
May 24, 2017 12:25
I'm having a similar issue using RenderTexture, which only happens on the player on metal API. Everything by Graphics.Blit with specific shader is rendered with trails and tinted by pink.