Fix T37264: cycles CPU render had limited number of float images, bumped to 1024.
GPU is still limited to 5, but there's no good reason for the CPU to be limited.
This commit is contained in:

committed by
Brecht Van Lommel

parent
5fdfa6d475
commit
1bebdc9ad0
@@ -31,8 +31,8 @@ struct OSLThreadData;
|
||||
struct OSLShadingSystem;
|
||||
#endif
|
||||
|
||||
#define MAX_BYTE_IMAGES 512
|
||||
#define MAX_FLOAT_IMAGES 5
|
||||
#define MAX_BYTE_IMAGES 1024
|
||||
#define MAX_FLOAT_IMAGES 1024
|
||||
|
||||
typedef struct KernelGlobals {
|
||||
texture_image_uchar4 texture_byte_images[MAX_BYTE_IMAGES];
|
||||
|
Reference in New Issue
Block a user