Search Issue Tracker
By Design
Votes
1
Found in
2021.3.28f1
2022.3.4f1
2023.1.3f1
2023.2.0a23
Issue ID
UUM-42134
Regression
No
Graphics.CopyTexture doesn't work correctly when using Texture Streaming
How to reproduce:
1. Open the user-attached project “TextureStream”
2. Click Build And Run
3. In the Player, click "Load Tex0", "Apply Tex0" and then "Copy Tex0 to Tex1" buttons
4. Observe the two Cubes
Expected result: The textures on both Cubes are identical
Actual result: The texture on the second Cube is different
Reproducible with: 2021.3.28f1, 2022.3.4f1, 2023.1.3f1, 2023.2.0a23
Reproducible on: Windows 11 Pro, macOS 13.4 (Intel)
Note: Not reproducible in the Editor
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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Resolution Note:
This issue is "by design", even if the error reporting (or rather, the lack of it) doesn't make it immediately obvious what is happening.
The Graphics.CopyTexture does not load the mipmap levels needed to perform the copy.
If you wish to copy a full texture, you must thus ensure that all mipmap levels are loaded using, for example, "m_tex0.requestedMipmapLevel = 0" followed by a wait until "m_tex0.IsRequestedMipmapLevelLoaded()" is "true" -- only then will the CopyTexture look correct.