Changeset 10765 for code/branches/cpp11_v2/src/libraries/tools
- Timestamp:
- Nov 4, 2015, 10:25:42 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/libraries/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/tools/ResourceCollection.cc
r9667 r10765 93 93 { 94 94 if (index >= resourceLocations_.size()) 95 return NULL;95 return nullptr; 96 96 else 97 97 return resourceLocations_[index]; -
code/branches/cpp11_v2/src/libraries/tools/Shader.cc
r10727 r10765 109 109 { 110 110 // For the moment, we get the viewport always from the graphics manager 111 // TODO: Try to support multiple viewports - note however that scenemanager_->getCurrentViewport() returns NULL111 // TODO: Try to support multiple viewports - note however that scenemanager_->getCurrentViewport() returns nullptr 112 112 // after switching to a camera in a different scene (only for the first time this scene is displayed though) 113 113 this->changedCompositorName(GraphicsManager::getInstance().getViewport());
Note: See TracChangeset
for help on using the changeset viewer.