Skip to content
Snippets Groups Projects
Commit e5eb3e5f authored by Jordi Inglada's avatar Jordi Inglada
Browse files

ENH: change method InitTextureStatusFalse to InitTextureStatus(bool status)

parent 7ff22d56
No related branches found
No related tags found
No related merge requests found
...@@ -180,12 +180,12 @@ public: ...@@ -180,12 +180,12 @@ public:
return this->GetFunctor().GetTexturesStatus(); return this->GetFunctor().GetTexturesStatus();
} }
void InitTextureStatusFalse() void InitTextureStatus(bool status)
{ {
unsigned int id; unsigned int id;
for (id=0;id<=1;id++) for (id=0;id<=1;id++)
{ {
this->SetFeatureStatus(static_cast<FeatureType>(id),true); this->SetFeatureStatus(static_cast<FeatureType>(id),status);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment