1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-25 09:44:02 +00:00
Aquaria/BBGE/ProfRender.cpp
2016-05-05 19:57:50 +02:00

64 lines
1.4 KiB
C++

/*
Copyright (C) 2007, 2010 - Bit-Blot
This file is part of Aquaria.
Aquaria is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "ProfRender.h"
void prof_print(float x, float y, char *str)
{
core->print(x, y-1.5f*4, str, 6);
//Prof_set_report_mode(Prof_HIERARCHICAL_TIME);
/*
Prof_SELF_TIME: flat times sorted by self time
Prof_HIERARCHICAL_TIME: flat times sorted by hierarchical time
Prof_CALL_GRAPH: call graph parent/children information
*/
}
float prof_width(char *str)
{
int c = 0;
float x = 0;
while (str[c] != '\0')
{
c++;
x += 1.2f;
}
x *= 6;
return x;
}
ProfRender::ProfRender() : RenderObject()
{
followCamera = 1;
cull = false;
alpha = 0.5;
}
void ProfRender::onRender()
{
#ifdef BBGE_BUILD_WINDOWS
#endif
}