Rev 18 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 18 | Rev 20 | ||
---|---|---|---|
Line 2... | Line 2... | ||
2 | #define _UTILITY_H_ |
2 | #define _UTILITY_H_ |
3 | 3 | ||
- | 4 | #include "brender/br_types.h" |
|
4 | #include "dr_types.h" |
5 | #include "dr_types.h" |
5 | 6 | ||
6 | extern int gIn_check_quit; |
7 | extern int gIn_check_quit; |
7 | extern tU32 gLost_time; |
8 | extern tU32 gLost_time; |
8 | //extern tU32 gLong_key[4]; // Pierre-Marie Baty -- not needed elsewhere |
9 | //extern tU32 gLong_key[4]; // Pierre-Marie Baty -- not needed elsewhere |
Line 68... | Line 69... | ||
68 | 69 | ||
69 | br_uint_32 DRPixelmapLoadMany(char* pFile_name, br_pixelmap** pPixelmaps, br_uint_16 pNum); |
70 | br_uint_32 DRPixelmapLoadMany(char* pFile_name, br_pixelmap** pPixelmaps, br_uint_16 pNum); |
70 | 71 | ||
71 | void WaitFor(tU32 pDelay); |
72 | void WaitFor(tU32 pDelay); |
72 | 73 | ||
73 |
|
74 | intptr_t DRActorEnumRecurse(br_actor* pActor, br_actor_enum_cbfn* callback, void* arg); |
74 | 75 | ||
75 |
|
76 | intptr_t CompareActorID(br_actor* pActor, void* pArg); |
76 | 77 | ||
77 | br_actor* DRActorFindRecurse(br_actor* pSearch_root, char* pName); |
78 | br_actor* DRActorFindRecurse(br_actor* pSearch_root, char* pName); |
78 | 79 | ||
79 | br_uint_32 DRActorEnumRecurseWithMat(br_actor* pActor, br_material* pMat, br_uint_32 (*pCall_back)(br_actor*, br_material*, void*), void* pArg); |
80 | br_uint_32 DRActorEnumRecurseWithMat(br_actor* pActor, br_material* pMat, br_uint_32 (*pCall_back)(br_actor*, br_material*, void*), void* pArg); |
80 | 81 |