RESOLVED FIXED 25858
Upstream V8 bindings for CanvasRenderingContext2D
https://bugs.webkit.org/show_bug.cgi?id=25858
Summary Upstream V8 bindings for CanvasRenderingContext2D
Nate Chapin
Reported 2009-05-18 16:15:52 PDT
See summary.
Attachments
patch (14.53 KB, patch)
2009-05-18 16:21 PDT, Nate Chapin
fishd: review-
patch2 (14.27 KB, patch)
2009-05-19 09:37 PDT, Nate Chapin
fishd: review+
Nate Chapin
Comment 1 2009-05-18 16:21:34 PDT
Darin Fisher (:fishd, Google)
Comment 2 2009-05-19 08:58:41 PDT
Comment on attachment 30452 [details] patch > Index: WebCore/bindings/v8/custom/V8CanvasRenderingContext2DCustom.cpp > +// Helper macro for converting v8 values into floats (expected by many of the > +// canvas functions). > +#define TO_FLOAT(a) static_cast<float>((a)->NumberValue()) Can this be rewritten as an inline function instead? It is best to avoid macros whenever possible. Can you use toFloat from V8Binding.h? > +CALLBACK_FUNC_DECL(CanvasRenderingContext2DPutImageData) ... > + if (V8Proxy::IsWrapperOfType(args[0], V8ClassIndex::IMAGEDATA)) { > + imageData = V8Proxy::ToNativeObject<ImageData>(V8ClassIndex::IMAGEDATA, args[0]); > + } style nit: no brackets around single lines
Nate Chapin
Comment 3 2009-05-19 09:37:35 PDT
Nate Chapin
Comment 4 2009-05-19 09:53:46 PDT
(In reply to comment #2) > (From update of attachment 30452 [details] [review]) > > Index: WebCore/bindings/v8/custom/V8CanvasRenderingContext2DCustom.cpp > > > +// Helper macro for converting v8 values into floats (expected by many of the > > +// canvas functions). > > +#define TO_FLOAT(a) static_cast<float>((a)->NumberValue()) > > Can this be rewritten as an inline function instead? It is best to > avoid macros whenever possible. > > Can you use toFloat from V8Binding.h? Wasn't aware of that one, thanks. > > > > +CALLBACK_FUNC_DECL(CanvasRenderingContext2DPutImageData) > ... > > + if (V8Proxy::IsWrapperOfType(args[0], V8ClassIndex::IMAGEDATA)) { > > + imageData = V8Proxy::ToNativeObject<ImageData>(V8ClassIndex::IMAGEDATA, args[0]); > > + } > > style nit: no brackets around single lines > Doh, missed one. Done.
Darin Fisher (:fishd, Google)
Comment 5 2009-05-19 13:54:02 PDT
Note You need to log in before you can comment on or make changes to this bug.