Always init AardGL

This commit is contained in:
Tamius Han 2020-06-18 20:56:47 +02:00
parent b1257a4c51
commit 56456bddda

View File

@ -179,7 +179,8 @@ class VideoData {
return;
}
if(! this.arSetupComplete){
this.arDetector = new ArDetector(this);
// this.arDetector = new ArDetector(this);
this.arDetector = new AardGl(this);
}
}
@ -192,7 +193,8 @@ class VideoData {
this.arDetector.init();
}
else{
this.arDetector = new ArDetector(this);
// this.arDetector = new ArDetector(this);
this.arDetector = new AardGl(this);
this.arDetector.init();
}
}