home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Programming / MR_Classes / Dev / Source / supermodel / revision_data < prev    next >
Encoding:
Text File  |  2000-08-04  |  2.1 KB  |  44 lines

  1.  
  2. ----------------------------------------------------------------------------------------------------
  3. (44.1.1) (08/04/00) - Work:sc/Programs/Boopsi/Reaction/Dev/Source/supermodel/model_SuperModel.c
  4. Description: was orignally freeing u.gpu_AttrsList, which may have been changed by glue code
  5. ...
  6.           SMTAG_FreeTags(mytags);
  7. ...
  8.  
  9.  
  10. ----------------------------------------------------------------------------------------------------
  11. (44.1.3) (08/04/00) - Work:sc/Programs/Boopsi/Reaction/Dev/Source/supermodel/model_SuperModel.c
  12. Description: Added 
  13. ...
  14.       case SMA_CacheStringTag://                                                                       (44.1.3) (08/04/00)
  15. //        DKP("SMA_CacheStringTag %lx\n",d);//                                                         (44.1.3) (08/04/00)
  16.         SMTAG_AddTag(data->CachedStringTags, d, AllocVec(258,MEMF_PUBLIC));//                          (44.1.3) (08/04/00)
  17.         c--;//                                                                                         (44.1.3) (08/04/00)
  18.         break;
  19. ...
  20.  
  21. ----------------------------------------------------------------------------------------------------
  22. (44.1.4) (08/04/00) - Work:sc/Programs/Boopsi/Reaction/Dev/Source/supermodel/model_SuperModel.c
  23. Description: function added
  24. ...
  25. void UpdateCachedStrings(struct SuperModelData *data, struct TagItem *NewTags)
  26. ...
  27.  
  28.  
  29. ----------------------------------------------------------------------------------------------------
  30. (44.1.6) (08/04/00) - Work:sc/Programs/Boopsi/Reaction/Dev/Source/supermodel/model_SuperModel.c
  31. Description: function added
  32. ...
  33. void FreeCachedStrings(struct SuperModelData *data)
  34. ...
  35.  
  36. ----------------------------------------------------------------------------------------------------
  37. (44.1.7) (08/04/00) - Work:sc/Programs/Boopsi/Reaction/Dev/Source/supermodel/model_SuperModel.c
  38. Description: added
  39. ...
  40.     case OM_DISPOSE://                                                                                 (44.1.7) (08/04/00)
  41.       {//                                                                                              (44.1.7) (08/04/00)
  42.         FreeCachedStrings(data);
  43. ...
  44.