00001 /* 00002 ----------------------------------------------------------------------------- 00003 This source file is part of OpenSpace3D 00004 For the latest info, see http://www.openspace3d.com 00005 00006 Copyright (c) 2010 I-maginer 00007 00008 This program is free software; you can redistribute it and/or modify it under 00009 the terms of the GNU Lesser General Public License as published by the Free Software 00010 Foundation; either version 2 of the License, or (at your option) any later 00011 version. 00012 00013 This program is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00015 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public License along with 00018 this program; if not, write to the Free Software Foundation, Inc., 59 Temple 00019 Place - Suite 330, Boston, MA 02111-1307, USA, or go to 00020 http://www.gnu.org/copyleft/lesser.txt 00021 00022 You may alternatively use this source under the terms of a specific version of 00023 the OpenSpace3D Unrestricted License provided you have obtained such a license from 00024 I-maginer. 00025 ----------------------------------------------------------------------------- 00026 */ 00027 00028 #include "..\SCOLBasic\SO3Std.h" 00029 00030 namespace Ogre 00031 { 00032 void checkForCgError(const String& ogreMethod, const String& errorTextPrefix, CGcontext context) 00033 { 00034 CGerror error = cgGetError(); 00035 if (error != CG_NO_ERROR) 00036 { 00037 String msg = errorTextPrefix + cgGetErrorString(error); 00038 00039 if (error == CG_COMPILER_ERROR) 00040 { 00041 // Get listing with full compile errors 00042 msg = msg + "\n" + cgGetLastListing(context); 00043 } 00044 OGRE_EXCEPT(Exception::ERR_INTERNAL_ERROR, msg, ogreMethod); 00045 } 00046 } 00047 }
1.6.3