Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility with Ogre 1.12 #1526

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
bedffa7
[CORE] Added a macro that indicates the OGRE version
Dec 4, 2024
3afccd1
[CORE] Removed a deprecated warning in vpAROgre
Dec 4, 2024
7853efd
[FIX] Fix "no matching function for call to showConfigDialog" when us…
Dec 4, 2024
1715f01
[FIX] Fixed "error: 'Ogre::WindowEventUtilities' has not been declare…
Dec 4, 2024
36fe776
[FIX] Fixed "mBackground->setMaterial(BackgroundMaterial);" related e…
Dec 4, 2024
5537544
[FIX] Fixed "cannot convert 'Ogre::Matrix4' to 'const Ogre::Affine3&'"
Dec 4, 2024
8bb0792
[FIX] Fixed visp-images dataset detection
Dec 5, 2024
6c7cc06
[FIX] Fixed deprecated warnings due to the setting of the lights in A…
Dec 10, 2024
9d18137
[FIX] Fixed resource loading and setMaterial issue
Dec 10, 2024
8472d16
[FIX] Fix deprecated warning due to createSceneManager
Dec 10, 2024
0ea8a35
[FIX] Fixed deprecated warning due to getSceneManagerIterator
Dec 10, 2024
31a128b
[WIP] Working on the CMake file for Ogre
Dec 10, 2024
f6b69c2
[CORE] Fixed deprecated warnings due to light->setPosition in tutorials
Dec 11, 2024
2f49d90
[CORE] Add Ogre dir log during CMake configuration if USE_OGRE
Dec 11, 2024
e675804
[FIX] Initialize the VISP_HAVE_OGRE_RESOURCES_PATH to empty string be…
Dec 11, 2024
852dd7a
[KO] Pbs : of include in 1.12.10, of linkage in 1.9.0
Dec 12, 2024
c5dbc8a
[FIX] Fixed warnings when loading the resources using Ogre 1.12.10
Dec 16, 2024
492c99f
[FIX] Fixed segfault that occured in tuto-ibvs-ogre-tracking
Dec 16, 2024
343aea9
[FIX] FIx include + linkage problems for ogre 1.12+
Dec 16, 2024
963737e
[FIX] Fixed CMake errors related to v1.9
Dec 17, 2024
2706336
[FIX] Fixed release of the shared ptr for ogre v1.9
Dec 17, 2024
6e01309
[WIP] Working on a fix for Ogre v1.10 and v1.11
Dec 17, 2024
abb8395
[FIX] Fixed compilation error for ogre 1.10
Dec 19, 2024
52745ec
[FIX] Avoid creating Ogre targets if they already exist
Dec 19, 2024
bf95f77
[CLEAN] Solved a warning when using ogre 1.9.1 from apt
Dec 19, 2024
213589e
[CORE] Added CMakes lines that might be useful for compiled versions …
Dec 19, 2024
1fdc37b
[CLEAN] Removed commented CMake lines
Dec 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[FIX] Fix deprecated warning due to createSceneManager
  • Loading branch information
LAGNEAU Romain committed Dec 10, 2024
commit 8472d16787b8e3f3dba5981b79feee6ae2587d16
2 changes: 1 addition & 1 deletion modules/ar/src/ogre-simulator/vpAROgre.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ void vpAROgre::init(bool
#if (VISP_HAVE_OGRE_VERSION < (1<<16 | 10<<8 | 0))
mSceneMgr = mRoot->createSceneManager(Ogre::ST_GENERIC);
#else
mSceneMgr = mRoot->createSceneManager(Ogre::ST_GENERIC);
mSceneMgr = mRoot->createSceneManager(Ogre::DefaultSceneManagerFactory::FACTORY_TYPE_NAME, Ogre::BLANKSTRING);
#endif

// Create the camera
Expand Down