Jonathan Brodsky

Results 11 comments of Jonathan Brodsky

ok, my bad, found it: https://forum.pjrc.com/threads/48410-Including-any-file-in-Audio-library-causes-entire-Audio-library-to-be-included It still strikes me that it would be possible to resolve this name collision on the side of this library, rather than having ifdefs...

I was having a similar issue, I fixed it by adding the following code: ``` $("#sidebar ul#udm li a").hover(function(){ }, function(){ Cufon.refresh(); }); ``` the original selector that was failing...

inside your $(document).ready(function(){ });

it doesn't matter which file it goes in, so long as it is inside of the document.ready. It should probably go right next to where you have your initial cufon...

sorry man, your code that I am looking at is far more complex than the issue that I was dealing with.

just wanted to pop in and give a "hey this is still going wrong". Seems to crash on both the basic scene and the ADC scene in the editor on...

yep, of course! I did a few tests on my way to this conclusion, though unfortunately I was having difficulty using performance.now() to isolate just the drawing functions. It seemed...

going back to the early tickets on this topic #22 and #50 it seems like the pixel based approach that I am suggesting was proposed but rejected in favor of...

Yeah, I recognize that this is a big issue :) and its a real pain to get it right too - I ended up reimplementing the parts of Rot.Display that...

Impressive! I was seeing a teeny bit of slowdown on my phone, but like you say, batching will make that issue go away completely. This is great.