changed use and def attribute check for x3d importer to upper case

This is how it is specified in the standard.
pull/4079/head
René Martin 2021-09-17 14:24:57 +02:00
parent d0f7200196
commit e92177cb99
1 changed files with 2 additions and 2 deletions

View File

@ -69,8 +69,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/// \param [out] pUSE_Var - output variable name for "USE" value.
#define MACRO_ATTRREAD_CHECKUSEDEF_RET(pNode, pDEF_Var, pUSE_Var) \
do { \
XmlParser::getStdStrAttribute(pNode, "def", pDEF_Var); \
XmlParser::getStdStrAttribute(pNode, "use", pUSE_Var); \
XmlParser::getStdStrAttribute(pNode, "DEF", pDEF_Var); \
XmlParser::getStdStrAttribute(pNode, "USE", pUSE_Var); \
} while (false)
/// \def MACRO_FACE_ADD_QUAD_FA(pCCW, pOut, pIn, pP1, pP2, pP3, pP4)