From 0adc037d20d628d82935e48d65da94ecefb96f72 Mon Sep 17 00:00:00 2001 From: Don BURNS Date: Sat, 11 Jan 2003 20:56:29 +0000 Subject: [PATCH] ReaderWriterDirectX.cpp needed some std::'s --- src/osgPlugins/directx/ReaderWriterDirectX.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/osgPlugins/directx/ReaderWriterDirectX.cpp b/src/osgPlugins/directx/ReaderWriterDirectX.cpp index bfaebdc65..635937056 100644 --- a/src/osgPlugins/directx/ReaderWriterDirectX.cpp +++ b/src/osgPlugins/directx/ReaderWriterDirectX.cpp @@ -86,9 +86,9 @@ osgDB::ReaderWriter::ReadResult ReaderWriterDirectX::readNode(const std::string& float creaseAngle = 80.0f; if (options) { const std::string option = options->getOptionString(); - if (option.find("flipTexture") != string::npos) + if (option.find("flipTexture") != std::string::npos) flipTexture = false; - if (option.find("creaseAngle") != string::npos) { + if (option.find("creaseAngle") != std::string::npos) { // TODO } } @@ -145,7 +145,7 @@ osg::Geode* ReaderWriterDirectX::convertFromDX(DX::Object& obj, * * - Polys are CW oriented */ - vector geomList; + std::vector geomList; unsigned int i; for (i = 0; i < meshMaterial->material.size(); i++) {