fix warning for release builds for opengl es / webgl

This commit is contained in:
Green Sky 2023-03-04 18:57:44 +01:00
parent e9c62f9201
commit 6df865de3e
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ Texture::handle_t Texture::createEmptyMultiSampled(int32_t internalFormat, int32
(void)height;
(void)samples;
assert(false && "GLES has no multisampling support");
return nullptr;
#endif
}