Changeset 9791 in orxonox.OLD for branches/new_class_id/src/lib/graphics/importer
- Timestamp:
- Sep 23, 2006, 11:10:04 AM (18 years ago)
- Location:
- branches/new_class_id/src/lib/graphics/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/graphics/importer/resource_texture.cc
r9790 r9791 8 8 : NewResource(&ResourceTexture::type) 9 9 { 10 NewResource::StorePointer* ptr = this->acquireResource(imageName + ',' + "TEST");10 Resources::StorePointer* ptr = this->acquireResource(imageName + ',' + "TEST"); 11 11 12 12 if (ptr) … … 20 20 std::string fileName = this->NewResource::locateFile(imageName); 21 21 this->Texture::loadImage(fileName, target); 22 this->NewResource::addResource(new ResourceTexture::TextureResourcePointer(imageName + ',' + "TEST", KeepLevel(0), this->Texture::dataPointer()));22 this->NewResource::addResource(new ResourceTexture::TextureResourcePointer(imageName + ',' + "TEST", Resources::KeepLevel(0), this->Texture::dataPointer())); 23 23 } 24 24 } 25 25 26 26 27 NewResource::Type ResourceTexture::type(Texture::staticClassID());27 Resources::Type ResourceTexture::type(Texture::staticClassID()); 28 28 29 29 … … 31 31 32 32 33 ResourceTexture::TextureResourcePointer::TextureResourcePointer(const std::string& loadString, const NewResource::KeepLevel& keepLevel, const TextureData::Pointer& data)34 : NewResource::StorePointer(loadString, keepLevel) , pointer(data)33 ResourceTexture::TextureResourcePointer::TextureResourcePointer(const std::string& loadString, const Resources::KeepLevel& keepLevel, const TextureData::Pointer& data) 34 : Resources::StorePointer(loadString, keepLevel) , pointer(data) 35 35 {} 36 36 -
branches/new_class_id/src/lib/graphics/importer/resource_texture.h
r9789 r9791 19 19 20 20 private: 21 class TextureResourcePointer : public NewResource::StorePointer21 class TextureResourcePointer : public Resources::StorePointer 22 22 { 23 23 public: 24 TextureResourcePointer(const std::string& loadString, const NewResource::KeepLevel& keepLevel, const TextureData::Pointer& data);24 TextureResourcePointer(const std::string& loadString, const Resources::KeepLevel& keepLevel, const TextureData::Pointer& data); 25 25 inline const TextureData::Pointer& ptr() const { return pointer; } 26 26 private: … … 29 29 30 30 private: 31 static NewResource::Type type;31 static Resources::Type type; 32 32 }; 33 33
Note: See TracChangeset
for help on using the changeset viewer.