Fix/workaround T51007: Material viewport mode crash on node with more than 64 outputs

Ideally we need to find a way to remove such a static limit here, but it's not so
trivial to implement for texture nodes. Requires some bigger system redesign there.

Just raising limit for now, which is fine for modern systems.
This commit is contained in:
Sergey Sharybin 2017-03-24 14:36:00 +01:00
parent 467d824f80
commit 6aa972ebd4
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@
#include "RNA_types.h"
/* not very important, but the stack solver likes to know a maximum */
#define MAX_SOCKET 64
#define MAX_SOCKET 512
struct bContext;
struct bNode;