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:
Thomas Dinges
2013-12-14 15:06:18 +01:00
committed by Brecht Van Lommel
parent 5fdfa6d475
commit 1bebdc9ad0
3 changed files with 5 additions and 5 deletions

View File

@@ -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];