improve logging facility
we have a log viewer within the program now
This commit is contained in:
parent
4ae13c15e6
commit
fddd05dc1a
33 changed files with 556 additions and 386 deletions
|
|
@ -30,7 +30,7 @@ float* DivFilterTables::sincIntegralTable=NULL;
|
|||
// licensed under same license as this program.
|
||||
float* DivFilterTables::getCubicTable() {
|
||||
if (cubicTable==NULL) {
|
||||
logD("initializing cubic spline table.\n");
|
||||
logD("initializing cubic spline table.");
|
||||
cubicTable=new float[4096];
|
||||
|
||||
for (int i=0; i<1024; i++) {
|
||||
|
|
@ -46,7 +46,7 @@ float* DivFilterTables::getCubicTable() {
|
|||
|
||||
float* DivFilterTables:: getSincTable() {
|
||||
if (sincTable==NULL) {
|
||||
logD("initializing sinc table.\n");
|
||||
logD("initializing sinc table.");
|
||||
sincTable=new float[65536];
|
||||
|
||||
sincTable[0]=1.0f;
|
||||
|
|
@ -66,7 +66,7 @@ float* DivFilterTables:: getSincTable() {
|
|||
|
||||
float* DivFilterTables::getSincIntegralTable() {
|
||||
if (sincIntegralTable==NULL) {
|
||||
logD("initializing sinc integral table.\n");
|
||||
logD("initializing sinc integral table.");
|
||||
sincIntegralTable=new float[65536];
|
||||
|
||||
sincIntegralTable[0]=-0.5f;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue