Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Foucault <foucault.clem@gmail.com>2018-09-10 17:27:01 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-09-10 19:05:11 +0300
commit2a907bea9cef6fa7450afaff3bf5eb25e3d214c0 (patch)
tree2efa0446287e0a921719b7af25abad43f3029469 /source/blender/gpu/intern/gpu_texture.c
parent5e7a56dc646596c8cdac6f7ade8665c3ccbe201b (diff)
Fix assert when toggling Xray mode after going to Solid and lookedev/eevee
Diffstat (limited to 'source/blender/gpu/intern/gpu_texture.c')
-rw-r--r--source/blender/gpu/intern/gpu_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_texture.c b/source/blender/gpu/intern/gpu_texture.c
index 2ccc9f10269..98362abfbfd 100644
--- a/source/blender/gpu/intern/gpu_texture.c
+++ b/source/blender/gpu/intern/gpu_texture.c
@@ -55,7 +55,7 @@ static struct GPUTextureGlobal {
} GG = {NULL, NULL, NULL};
/* Maximum number of FBOs a texture can be attached to. */
-#define GPU_TEX_MAX_FBO_ATTACHED 8
+#define GPU_TEX_MAX_FBO_ATTACHED 9
typedef enum GPUTextureFormatFlag {
GPU_FORMAT_DEPTH = (1 << 0),