OpenSceneGraph/src/osgPlugins/ac
Robert Osfield 110c761695 From Melchoir Franz, "ac3d.cpp does currently strip everything but the file name in
"texture" paths. This is to drop absolute paths that some
3d editors export (even AC3D itself!). But this also strips
directories of relative paths, which is wrong and contradicts
the ac3d reference implementation. (The reference implementation
doesn't strip anything, though, and so takes the absolute paths
as they are. Definitely not what we want.)

The attached solution checks absolute paths and only strips
those:

 (1)  A:\\foo\\bar.png   ->   bar.png            (as before)
 (2)  /foo/bar.png       ->   bar.png            (as before)

 (3)  foo/bar.png        ->   foo/bar.png        (new)
 (4)  ../foo/bar.png     ->   ../foo/bar.png     (new)

"
2008-03-13 16:18:03 +00:00
..
ac3d.cpp From Melchoir Franz, "ac3d.cpp does currently strip everything but the file name in 2008-03-13 16:18:03 +00:00
CMakeLists.txt Moved the TARGET_NAME setting into the OsgMacroUtils.cmake. 2007-03-19 17:24:19 +00:00
Exception.cpp Renamed the follow plugins to facilitate CMake build 2007-03-11 13:23:06 +00:00
Exception.h Renamed the follow plugins to facilitate CMake build 2007-03-11 13:23:06 +00:00
Geode.cpp From Roger James, "These fix a couple of problems in the ac3d writer. 2007-06-06 11:34:19 +00:00
Geode.h From Roger James, "These fix a couple of problems in the ac3d writer. 2007-06-06 11:34:19 +00:00