mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 02:25:48 +02:00
CR feedback
This commit is contained in:
parent
8186145d35
commit
60750d1d80
1 changed files with 19 additions and 16 deletions
|
@ -424,24 +424,27 @@ void VoxelSceneStats::printDebugDetails() {
|
||||||
qDebug(" trees removed : %lu\n", _treesRemoved );
|
qDebug(" trees removed : %lu\n", _treesRemoved );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const unsigned greenish = 0x40ff40d0;
|
||||||
|
const unsigned yellowish = 0xffef40c0;
|
||||||
|
const unsigned greyish = 0xd0d0d0a0;
|
||||||
|
|
||||||
VoxelSceneStats::ItemInfo VoxelSceneStats::_ITEMS[] = {
|
VoxelSceneStats::ItemInfo VoxelSceneStats::_ITEMS[] = {
|
||||||
{ "Elapsed" , 0x40ff40d0 },
|
{ "Elapsed" , greenish },
|
||||||
{ "Encode" , 0xffef40c0 },
|
{ "Encode" , yellowish },
|
||||||
{ "Network" , 0xd0d0d0a0 },
|
{ "Network" , greyish },
|
||||||
{ "Voxels on Server" , 0x40ff40d0 },
|
{ "Voxels on Server" , greenish },
|
||||||
{ "Voxels Sent" , 0xffef40c0 },
|
{ "Voxels Sent" , yellowish },
|
||||||
{ "Colors Sent" , 0xd0d0d0a0 },
|
{ "Colors Sent" , greyish },
|
||||||
{ "Bitmasks Sent" , 0x40ff40d0 },
|
{ "Bitmasks Sent" , greenish },
|
||||||
{ "Traversed" , 0xffef40c0 },
|
{ "Traversed" , yellowish },
|
||||||
{ "Skipped - Total" , 0xd0d0d0a0 },
|
{ "Skipped - Total" , greyish },
|
||||||
{ "Skipped - Distance" , 0x40ff40d0 },
|
{ "Skipped - Distance" , greenish },
|
||||||
{ "Skipped - Out of View", 0xffef40c0 },
|
{ "Skipped - Out of View", yellowish },
|
||||||
{ "Skipped - Was in View", 0xd0d0d0a0 },
|
{ "Skipped - Was in View", greyish },
|
||||||
{ "Skipped - No Change" , 0x40ff40d0 },
|
{ "Skipped - No Change" , greenish },
|
||||||
{ "Skipped - Occluded" , 0xffef40c0 },
|
{ "Skipped - Occluded" , yellowish },
|
||||||
{ "Didn't fit in packet" , 0xd0d0d0a0 },
|
{ "Didn't fit in packet" , greyish },
|
||||||
{ "Mode" , 0x40ff40d0 },
|
{ "Mode" , greenish },
|
||||||
};
|
};
|
||||||
|
|
||||||
char* VoxelSceneStats::getItemValue(int item) {
|
char* VoxelSceneStats::getItemValue(int item) {
|
||||||
|
|
Loading…
Reference in a new issue