diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-06-22 21:02:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 21:02:38 +0200 |
commit | cb73a6e9f9046229a16b6b298c9086f03548e186 (patch) | |
tree | 59f467dba621d7fe9ef54e5068ded2380656e70d /drivers/gles3/storage/texture_storage.cpp | |
parent | 88ce76537e771527561c592660b70872976078b7 (diff) | |
parent | 8a5af8183a86ef20de7027fc43cab20fb13060cc (diff) | |
download | redot-engine-cb73a6e9f9046229a16b6b298c9086f03548e186.tar.gz |
Merge pull request #78490 from clayjohn/GLES3-particles-subemit
Add warnings and fallbacks for particles sub emitters when using the GL Compatibility rendering backend
Diffstat (limited to 'drivers/gles3/storage/texture_storage.cpp')
-rw-r--r-- | drivers/gles3/storage/texture_storage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gles3/storage/texture_storage.cpp b/drivers/gles3/storage/texture_storage.cpp index 59a483da39..fd6cb722d2 100644 --- a/drivers/gles3/storage/texture_storage.cpp +++ b/drivers/gles3/storage/texture_storage.cpp @@ -644,7 +644,7 @@ Ref<Image> TextureStorage::_get_gl_image_and_format(const Ref<Image> &p_image, I } } break; default: { - ERR_FAIL_V_MSG(Ref<Image>(), "Image Format: " + itos(p_format) + " is not supported by the OpenGL3 Renderer"); + ERR_FAIL_V_MSG(Ref<Image>(), "The image format " + itos(p_format) + " is not supported by the GL Compatibility rendering backend."); } } |