mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
*** empty log message ***
This commit is contained in:
parent
7bb41d9131
commit
a86fe3c039
@ -920,5 +920,13 @@ $[install_headers_dir]/$[CONFIG_HEADER] : $[CONFIG_HEADER]
|
||||
#sinclude $[TOPDIRPREFIX]LocalSetup.gmsvc.pp
|
||||
#sinclude $[TOPDIRPREFIX]LocalSetup.pp
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
#elif $[or $[eq $[DIR_TYPE], models],$[eq $[DIR_TYPE], models_toplevel],$[eq $[DIR_TYPE], models_group]]
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include $[THISDIRPREFIX]Template.models.pp
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
#endif // DIR_TYPE
|
||||
|
@ -891,5 +891,13 @@ $[install_headers_dir]\$[CONFIG_HEADER] : $[CONFIG_HEADER]
|
||||
#sinclude $[TOPDIRPREFIX]LocalSetup.msvc.pp
|
||||
#sinclude $[TOPDIRPREFIX]LocalSetup.pp
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
#elif $[or $[eq $[DIR_TYPE], models],$[eq $[DIR_TYPE], models_toplevel],$[eq $[DIR_TYPE], models_group]]
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include $[THISDIRPREFIX]Template.models.pp
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
#endif // DIR_TYPE
|
||||
|
@ -585,7 +585,8 @@ make_canonical() {
|
||||
}
|
||||
|
||||
// Now restore the current working directory.
|
||||
if (chdir(cwd.c_str()) < 0) {
|
||||
string osdir = cwd.to_os_specific();
|
||||
if (chdir(osdir.c_str()) < 0) {
|
||||
cerr << "Error! Cannot change back to " << cwd << "\n";
|
||||
}
|
||||
|
||||
|
@ -45,6 +45,15 @@ operator = (const EggTextureCollection ©) {
|
||||
return *this;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggTextureCollection::Destructor
|
||||
// Access: Public
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////////
|
||||
EggTextureCollection::
|
||||
~EggTextureCollection() {
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: EggTextureCollection::clear
|
||||
// Access: Public
|
||||
|
@ -46,6 +46,7 @@ public:
|
||||
EggTextureCollection();
|
||||
EggTextureCollection(const EggTextureCollection ©);
|
||||
EggTextureCollection &operator = (const EggTextureCollection ©);
|
||||
~EggTextureCollection();
|
||||
|
||||
void clear();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user