Ugh: 'we developed a patent-pending solution called “ZyGL”.' While there are a bunch of people working to make stuff performant on browsers, Zynga comes in from behind and starts patenting barely-novel stuff on top of it.
Relevant patent I think: https://www.google.com/patents/US20130088491 If the emscripten lot had decided to patent "Method to reconstruct flow structures from binary machine code" then Zynga would not have the privilege of porting their game to the web in the first place.
Zynga’s first foray into WebGL, and how it runs on IE10
21–30 of 34 posts
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#22Earlier quoted context omitted.
Yes; please join the "Ask Patents" stackexchange site: http://patents.stackexchange.com/ This site is exactly for this reason: raising patent questions with the goal of identifying bad patents. "Ask Patents is a question and answer site for people interested in improving and participating in the US patent system. It's built and run by you as part of the Stack Exchange network of Q&A sites. With your help, we're worki…
It's been said before, but I'll say it again: The USPTO does not and will not look at nor use an end-user forums like "Ask Patents" for the basis of any decision.
Firstly, from the help page:
"Ask Patents blocks dangerous applications by alerting the US Patent Examiner of record when good Prior Art is found for an application that he or she is examining."
Secondly, the site contains examples of patents that were rejected with the site's help. You can search for questions with the [rejected] tag:
"The rejected tag is used on patent applications and patents which have been successfully narrowed or rejected by the USPTO after having been the subject of a prior-art-request on Ask Patents."
When we search for questions with this tag, we see text like "This Patent Application received a Final Rejection by the US Patent Office! The rejection was based in part on prior art found by Ask Patents community below!"
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#23I don't want to spoil their great "innovation patent" but Three.js has implemented this years ago ( http://threejs.org/docs/#Reference/Renderers/CanvasRenderer ).
Does that reconstruct quads as the Zynga post described? From the source code, it seems to just draw the triangles individually: https://github.com/mrdoob/three.js/blob/1769fbfc6c994b51a54c... I also don't see any heuristic processing of shaders as described for ZyGL.
https://github.com/mrdoob/three.js/blob/master/src/core/Face...
https://github.com/mrdoob/three.js/blob/88092284cbe07723fe2b...
And the relevant issue: https://github.com/mrdoob/three.js/issues/3663
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#24Ugh: 'we developed a patent-pending solution called “ZyGL”.' While there are a bunch of people working to make stuff performant on browsers, Zynga comes in from behind and starts patenting barely-novel stuff on top of it.
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#25Earlier quoted context omitted.
Does that reconstruct quads as the Zynga post described? From the source code, it seems to just draw the triangles individually: https://github.com/mrdoob/three.js/blob/1769fbfc6c994b51a54c... I also don't see any heuristic processing of shaders as described for ZyGL.
three.js removed support for quads to reduce renderer complexity. https://github.com/mrdoob/three.js/blob/master/src/core/Face... https://github.com/mrdoob/three.js/blob/88092284cbe07723fe2b... And the relevant issue: https://github.com/mrdoob/three.js/issues/3663
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#26I don't want to spoil their great "innovation patent" but Three.js has implemented this years ago ( http://threejs.org/docs/#Reference/Renderers/CanvasRenderer ).
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#27Earlier quoted context omitted.
three.js removed support for quads to reduce renderer complexity. https://github.com/mrdoob/three.js/blob/master/src/core/Face... https://github.com/mrdoob/three.js/blob/88092284cbe07723fe2b... And the relevant issue: https://github.com/mrdoob/three.js/issues/3663
Even before that change, I don't see any code that automatically reconstructs construct quads from pairs of triangles. But maybe I'm missing something?
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#28Ugh: 'we developed a patent-pending solution called “ZyGL”.' While there are a bunch of people working to make stuff performant on browsers, Zynga comes in from behind and starts patenting barely-novel stuff on top of it.
Not to mention IE10 is already Old. I lost a little more respect for Zynga today.
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#29I don't want to spoil their great "innovation patent" but Three.js has implemented this years ago ( http://threejs.org/docs/#Reference/Renderers/CanvasRenderer ).
So, what about that arbitrary shader code? In practice, the shaders used in 2D games tend to be fairly simple. ZyGL applies a series of heuristics to the shader code to try to infer its intent. It then uses these heuristics to map the draw calls through to some approximations of common shader code that we wrote in JavaScript.
I'm not aware of any prior art that is (a) a polyfill for WebGL using canvas that also (b) reconstructs triangle strips into canvas quads and (c) attempts to mimic shader effects by scanning the shader code for common techniques.
Re: Zynga’s first foray into WebGL, and how it runs on IE10
#30Earlier quoted context omitted.
It's been said before, but I'll say it again: The USPTO does not and will not look at nor use an end-user forums like "Ask Patents" for the basis of any decision.
Ask Patents has some good information, but also a lot of bad information or just plain wrong claims by rando's on the internet. The USPTO has their own internal databases they look to for research information.