Skip to content

Commit adf9dad

Browse files
committed
removed cout statements
1 parent 22abfea commit adf9dad

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Interface/Modules/Render/ES/systems/RenderTransBasicSys.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class RenderBasicSysTrans :
242242
case RenderState::TransparencySortType::CONTINUOUS_SORT:
243243
{
244244
iboID = sortObjects(dir, ibo, pass, iboMan);
245-
std::cout << "continuous" << std::endl;
245+
//std::cout << "continuous" << std::endl;
246246
break;
247247
}
248248
case RenderState::TransparencySortType::UPDATE_SORT:
@@ -259,7 +259,7 @@ class RenderBasicSysTrans :
259259
sortedID = sortObjects(dir, ibo, pass, iboMan);
260260
}
261261
iboID = sortedID;
262-
std::cout << "update" << std::endl;
262+
//std::cout << "update" << std::endl;
263263
break;
264264
}
265265
case RenderState::TransparencySortType::LISTS_SORT:
@@ -290,7 +290,7 @@ class RenderBasicSysTrans :
290290
{
291291
iboID = currentDir.z() < orZ ? iboNegZID : iboZID;
292292
}
293-
std::cout << "lists" << std::endl;
293+
//std::cout << "lists" << std::endl;
294294
break;
295295
}
296296
}

src/Interface/Modules/Render/ES/systems/RenderTransColorMapSys.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class RenderColorMapSysTrans :
239239
case RenderState::TransparencySortType::CONTINUOUS_SORT:
240240
{
241241
iboID = sortObjects(dir, ibo, pass, iboMan);
242-
std::cout << "continuous" << std::endl;
242+
//std::cout << "continuous" << std::endl;
243243
break;
244244
}
245245
case RenderState::TransparencySortType::UPDATE_SORT:
@@ -256,7 +256,7 @@ class RenderColorMapSysTrans :
256256
sortedID = sortObjects(dir, ibo, pass, iboMan);
257257
}
258258
iboID = sortedID;
259-
std::cout << "update" << std::endl;
259+
//::cout << "update" << std::endl;
260260
break;
261261
}
262262
case RenderState::TransparencySortType::LISTS_SORT:
@@ -287,7 +287,7 @@ class RenderColorMapSysTrans :
287287
{
288288
iboID = currentDir.z() < orZ ? iboNegZID : iboZID;
289289
}
290-
std::cout << "lists" << std::endl;
290+
//std::cout << "lists" << std::endl;
291291
break;
292292
}
293293
}

0 commit comments

Comments
 (0)