diff options
author | clayjohn <claynjohn@gmail.com> | 2023-06-20 14:03:14 -0700 |
---|---|---|
committer | Clay <claynjohn@gmail.com> | 2023-06-21 12:56:52 -0700 |
commit | 8a5af8183a86ef20de7027fc43cab20fb13060cc (patch) | |
tree | db6f7da768722ea54ac332361b6024b1dde6483e /drivers/gles3/storage/texture_storage.cpp | |
parent | 329652b6feac2114c4e30062f18ece36d4e3addc (diff) | |
download | redot-engine-8a5af8183a86ef20de7027fc43cab20fb13060cc.tar.gz |
Add warnings and fallbacks for particles sub emitters when using the GL Compatibility rendering backend
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
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 f362a21d8c..97687ba8f4 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."); } } |