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