Remove outdated warning when using screen texture in GL Compatibility renderer

This commit is contained in:
clayjohn 2023-06-15 18:48:50 -07:00
parent c0d8d91b15
commit 8a7f02addb
1 changed files with 0 additions and 4 deletions

View File

@ -2968,10 +2968,6 @@ void SceneShaderData::set_code(const String &p_code) {
WARN_PRINT_ONCE_ED("Transmittance is only available when using the Forward+ rendering backend."); WARN_PRINT_ONCE_ED("Transmittance is only available when using the Forward+ rendering backend.");
} }
if (uses_screen_texture) {
WARN_PRINT_ONCE_ED("Reading from the screen texture is not supported when using the GL Compatibility backend yet. Support will be added in a future release.");
}
if (uses_depth_texture) { if (uses_depth_texture) {
WARN_PRINT_ONCE_ED("Reading from the depth texture is not supported when using the GL Compatibility backend yet. Support will be added in a future release."); WARN_PRINT_ONCE_ED("Reading from the depth texture is not supported when using the GL Compatibility backend yet. Support will be added in a future release.");
} }