Search Issue Tracker
Fixed in 2022.2.X
Votes
4
Found in
2019.4
2020.3
2020.3.25f1
2021.2
2022.1
2022.2
Issue ID
1394682
Regression
No
"Shader not supported on this GPU" error is thrown when stripping a Shader that calls the UsePass command
How to reproduce:
1. Open the user's attached "UsePassStripping" project
2. Build and Run the "SampleScene" Scene
3. Observe the Cubes in the Player
Expected result: Both Cubes are white
Actual result: The left-side Cube is pink. In the Player.logs can be seen, that "ERROR: Shader BugReport/ShaderUsePass shader is not supported on this GPU (none of subshaders/fallbacks are suitable)" is thrown
Reproducible with: 2019.4.35f1, 2020.3.28f1, 2021.2.11f1, 2022.1.0b7, 2022.2.0a3
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
- [WebGL][Android] Corrupt header when connecting via IP
- Editor and Android Player hangs/freezes when repeatedly Loading/Unloading AssetBundle in Vulkan
- Selecting a Material for HDRP Decal Projector in the Inspector window spams errors in the Console
- Expanded Asset Preview Box moves/hides when creating new Asset in Project window
- Player crashes on Meta Quest with "/apex/com.android/runtime/lib64/bionic/libc.so" when using OpenXR Plugin in a specific project
Resolution Note (fix version 2022.2):
This seems to be working as intended.
If a use pass fails to find the used shader pass then the entire sub-shader is intentionally removed.
If you're trying to do a fallback mechanism, you should be using sub-shaders, not passes. All passes will end up running (in this case, the 1st one runs and sets the color to red then the 2nd one runs and overwrites that to white). You can get a similar effect to your example by moving each pass to a sub-shader (same for the use passes). When you do this, the first sub-shader will run, but when you strip the pass the 2nd sub-shader will run for both shaders.
If you're attempting to use this to achieve some variant behavior, then we'd recommend using other solutions, such as preprocessor directives.