I found that my intro was not working as expected in firefox, so I created this to plot the difference:
#define IMPORT(MODULE, NAME) __attribute__((import_module(MODULE), import_name(NAME)))
IMPORT("env", "time") extern float time();
IMPORT("env", "setPixel") extern void setPixel(int, int, int);
static int realframe = 0;
void upd() {
float t = time();
int frame = (int)(t * 60.f);
setPixel(realframe, frame, 15);
realframe++;
}
chrome:

firefox:

It looks like dropped frames, however surely (for this case) not because of performance issues in the cart...
Not really sure what is going on here...
I found that my intro was not working as expected in firefox, so I created this to plot the difference:
chrome:

firefox:

It looks like dropped frames, however surely (for this case) not because of performance issues in the cart...
Not really sure what is going on here...