GPUTexture: Fix missing break

This commit is contained in:
Clément Foucault 2020-08-05 14:17:14 +02:00
parent 229fe01a15
commit c961bf8975
1 changed files with 1 additions and 0 deletions

View File

@ -740,6 +740,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);