From 85e11ca7fb4d082c70fdb5b2cfd3f0c9bb615c54 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 5 Aug 2020 12:03:55 +0200 Subject: Fix possible fall-through after recent change --- source/blender/gpu/intern/gpu_texture.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/gpu') diff --git a/source/blender/gpu/intern/gpu_texture.cc b/source/blender/gpu/intern/gpu_texture.cc index 98c39f39fbf..49812abe605 100644 --- a/source/blender/gpu/intern/gpu_texture.cc +++ b/source/blender/gpu/intern/gpu_texture.cc @@ -681,6 +681,7 @@ static bool gpu_texture_check_capacity( case GL_PROXY_TEXTURE_3D: glTexImage3D( proxy, 0, internalformat, tex->w, tex->h, tex->d, 0, data_format, data_type, NULL); + break; case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB: glTexImage3D( proxy, 0, internalformat, tex->w, tex->h, tex->d * 6, 0, data_format, data_type, NULL); -- cgit v1.2.3