Added std:: infront of cout instances.

This commit is contained in:
Robert Osfield 2003-04-11 06:50:15 +00:00
parent aaa761e333
commit 8350eda616
3 changed files with 3 additions and 3 deletions

View File

@ -140,7 +140,7 @@ int main(int argc, char *argv[])
{
if (!tcmExt->isCubeMapSupported())
{
cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
std::cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
return 1;
}
}

View File

@ -110,7 +110,7 @@ int main( int argc, char **argv )
{
if (!textExt->isMultiTexturingSupported())
{
cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
std::cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
return 1;
}
}

View File

@ -415,7 +415,7 @@ int main(int argc, char *argv[])
{
if (!vpExt->isVertexProgramSupported())
{
cout<<"Warning: ARB_vertex_program not supported by OpenGL drivers, unable to run application."<<std::endl;
std::cout<<"Warning: ARB_vertex_program not supported by OpenGL drivers, unable to run application."<<std::endl;
return 1;
}
}