ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/object.h
(Generate patch)

Comparing ray/src/common/object.h (file contents):
Revision 2.23 by greg, Sat Oct 17 16:39:23 2020 UTC vs.
Revision 2.26 by greg, Fri Mar 17 18:27:18 2023 UTC

# Line 58 | Line 58 | typedef struct {
58  
59   #ifndef  MAXOBJBLK
60   #ifdef  SMLMEM
61 < #define  MAXOBJBLK      1023            /* maximum number of object blocks */
61 > #define  MAXOBJBLK      16383           /* maximum number of object blocks */
62   #else
63 < #define  MAXOBJBLK      131071          /* maximum number of object blocks */
63 > #define  MAXOBJBLK      1048503         /* maximum number of object blocks */
64   #endif
65   #endif
66  
# Line 79 | Line 79 | extern OBJECT  nobjects;               /* # of objects */
79   *  the objects in ascending order.
80   */
81  
82 < #define  MAXSET         511             /* maximum object set size */
82 > #define  MAXSET         8191            /* maximum object set size */
83  
84   #define setfree(os)     free((void *)(os))
85  
86 < extern void  (*addobjnotify[])();        /* people to notify of new objects */
86 > extern void  (*addobjnotify[])(OBJECT); /* people to notify of new objects */
87  
88                                          /* defined in modobject.c */
89   extern OBJECT   objndx(OBJREC *op);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines