@@ -6576,7 +6576,6 @@ class ListShadersCmd : public Cmd::StaticCmd
65766576 std::string shaderType = " shaderType" ;
65776577 std::string shaderSort = " shaderSort" ;
65786578 std::string stageType = " stageType" ;
6579- std::string interactLight = " interactLight" ;
65806579 std::string stageNumber = " stageNumber" ;
65816580 std::string shaderName = " shaderName" ;
65826581
@@ -6588,7 +6587,6 @@ class ListShadersCmd : public Cmd::StaticCmd
65886587 size_t shaderTypeLen = shaderType.length ();
65896588 size_t shaderSortLen = shaderSort.length ();
65906589 size_t stageTypeLen = stageType.length ();
6591- size_t interactLightLen = interactLight.length ();
65926590
65936591 // Value size
65946592 for ( const auto & kv : shaderTypeName )
@@ -6615,7 +6613,6 @@ class ListShadersCmd : public Cmd::StaticCmd
66156613 lineStream << std::setw (shaderTypeLen) << shaderType << separator;
66166614 lineStream << std::setw (shaderSortLen) << shaderSort << separator;
66176615 lineStream << std::setw (stageTypeLen) << stageType << separator;
6618- lineStream << std::setw (interactLightLen) << interactLight << separator;
66196616 lineStream << stageNumber << " :" << shaderName;
66206617
66216618 std::string lineSeparator ( lineStream.str ().length (), ' -' );
@@ -6657,7 +6654,6 @@ class ListShadersCmd : public Cmd::StaticCmd
66576654 shaderSort = shaderSortName.at ( (shaderSort_t) shader->sort );
66586655 }
66596656
6660- interactLight = shader->interactLight ? " INTERACTLIGHT" : " " ;
66616657 shaderName = shader->name ;
66626658 shaderName += shader->defaultShader ? " (DEFAULTED)" : " " ;
66636659
@@ -6671,7 +6667,6 @@ class ListShadersCmd : public Cmd::StaticCmd
66716667 lineStream << std::setw (shaderTypeLen) << shaderType << separator;
66726668 lineStream << std::setw (shaderSortLen) << shaderSort << separator;
66736669 lineStream << std::setw (stageTypeLen) << stageType << separator;
6674- lineStream << std::setw (interactLightLen) << interactLight << separator;
66756670 lineStream << " -:" << shaderName;
66766671
66776672 Print ( lineStream.str () );
@@ -6704,7 +6699,6 @@ class ListShadersCmd : public Cmd::StaticCmd
67046699 lineStream << std::setw (shaderTypeLen) << shaderType << separator;
67056700 lineStream << std::setw (shaderSortLen) << shaderSort << separator;
67066701 lineStream << std::setw (stageTypeLen) << stageType << separator;
6707- lineStream << std::setw (interactLightLen) << interactLight << separator;
67086702 lineStream << j << " :" << shaderName;
67096703
67106704 Print ( lineStream.str () );
0 commit comments