mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 18:03:56 -04:00
build on Irix
This commit is contained in:
parent
00eb9b8bd2
commit
86ce5ebba1
@ -47,7 +47,7 @@ ClipPlaneInfo() {
|
||||
////////////////////////////////////////////////////////////////////
|
||||
INLINE void GraphicsStateGuardian::
|
||||
release_all() {
|
||||
return _prepared_objects->release_all();
|
||||
_prepared_objects->release_all();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "eggGroup.h"
|
||||
#include "eggMaterial.h"
|
||||
#include "pt_EggMaterial.h"
|
||||
#include "eggVertexPool.h"
|
||||
#include "texture.h"
|
||||
#include "pandaNode.h"
|
||||
#include "pointerTo.h"
|
||||
|
@ -270,10 +270,11 @@ get_segment(const int seg_id) {
|
||||
INLINE string ColorInterpolationManager::
|
||||
get_segment_id_list(void) {
|
||||
pvector<PT(ColorInterpolationSegment)>::iterator iter;
|
||||
stringstream output;
|
||||
ostringstream output;
|
||||
|
||||
for(iter = _i_segs.begin();iter != _i_segs.end();++iter)
|
||||
output << (*iter)->get_id() << " ";
|
||||
|
||||
return output.str().substr(0,output.str().length()-1);
|
||||
string str = output.str();
|
||||
return str.substr(0, str.length()-1);
|
||||
}
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "nodePath.h"
|
||||
#include "luse.h"
|
||||
#include "pointerTo.h"
|
||||
#include "audioSound.h"
|
||||
#include "textNode.h"
|
||||
|
||||
#include "pmap.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user