Re: [webkit-dev] We're doing JPEG parallel decoding, wan't to contribute code to Webkit

2012-11-22 Thread Zhang Peixuan
Thanks a lot, and we will check it soon. 2012/11/23 Dong Seong Hwang > Looks promising to me. However, as you mentioned, using gpu wastes > constant times. You have to handle trade-off carefully, because decoding > small jpeg is light. > > You can work in parallel with Bug 90375 as Niwa mentione

Re: [webkit-dev] We're doing JPEG parallel decoding, wan't to contribute code to Webkit

2012-11-22 Thread Dong Seong Hwang
Looks promising to me. However, as you mentioned, using gpu wastes constant times. You have to handle trade-off carefully, because decoding small jpeg is light. You can work in parallel with Bug 90375 as Niwa mentioned. Bug 90375 tried to change WebKit architecture to decode off the main thread. Y

Re: [webkit-dev] We're doing JPEG parallel decoding, wan't to contribute code to Webkit

2012-11-22 Thread Ryosuke Niwa
See the following two threads: http://lists.webkit.org/pipermail/webkit-dev/2012-August/021820.html http://lists.webkit.org/pipermail/webkit-dev/2012-August/021734.html In particular, https://bugs.webkit.org/show_bug.cgi?id=90375 appears to have a work-in-progress patch. - R. Niwa On Thu, Nov 22

[webkit-dev] We're doing JPEG parallel decoding, wan't to contribute code to Webkit

2012-11-22 Thread Zhang Peixuan
Hello, We are writing a GPU-based libjpeg-turbo accelerated version and our goal is to use it in Chrome or other browsers that using Webkit. Now we have written a beta version, that can use GPU to decode JPEG files in Chromium. We still have a lot of work to do. And I have known from the

Re: [webkit-dev] pointer events specification - first editors draft

2012-11-22 Thread Benjamin Poulain
On Wed, Nov 21, 2012 at 2:42 PM, Rick Byers wrote: > Outside of the design details, are there any thoughts or concerns > about WebKit getting an implementation of pointer events at some > point? > In my opinion, the pointer events spec is a bad idea (at least, in its current state). I think addi

Re: [webkit-dev] Adding Web Animations to WebCore

2012-11-22 Thread Brian Birtles
(Sorry, the threading is going to be incorrect here. I just joined the list to follow up this thread.) Hi, I wanted to add a few brief comments about the status of Web Animations in response to some of the concerns raised recently. Maciej wrote: > * At least in its current form, it is overeng

Re: [webkit-dev] Adding Screen orientation API

2012-11-22 Thread ryuan Choi
Oops, Copy & paste mistake. Below links may be correct. http://www.w3.org/TR/screen-orientation/ https://bugs.webkit.org/show_bug.cgi?id=102869 Mozilla status : https://bugzilla.mozilla.org/show_bug.cgi?id=673922 Sadly, I already had local implementation because of requirements from our web applic

Re: [webkit-dev] Accessibility role naming - AXRole

2012-11-22 Thread Mario Sanchez Prada
Hi there, On Tue, 2012-11-20 at 18:53 +0100, Mateusz Leszko wrote: > Hello folks. > > I was wondering why all accessibility roles in webkit are named > ‘AXRoles’ and why it is always expected to return role name with ‘AX’ > prefix? Isn’t it strict MAC role naming? Some Layout Test for > accessibi

Re: [webkit-dev] Adding Screen orientation API

2012-11-22 Thread Benjamin Poulain
On Thu, Nov 22, 2012 at 1:34 AM, ryuan Choi wrote: > I would like to let you know, I am planning to add Screen Orientation API > to WebCore. > > This feature will be behind the ENABLE_SCREEN_ORIENTATION. Please see : > > http://www.w3.org/TR/screen-orientation/ >

Re: [webkit-dev] Adding Screen orientation API

2012-11-22 Thread Kenneth Rohde Christiansen
Your link links to something entirely different. Why not wait with implementing this until it is aligned with media queries and css device adaptation. Cheers Kenneth On Thu, Nov 22, 2012 at 10:34 AM, ryuan Choi wrote: > Hello, webkit-dev > > > > I would like to let you know, I am planning to a

[webkit-dev] Adding Screen orientation API

2012-11-22 Thread ryuan Choi
Hello, webkit-dev I would like to let you know, I am planning to add Screen Orientation API to WebCore. This feature will be behind the ENABLE_SCREEN_ORIENTATION. Please see : http://www.w3.org/TR/screen-orientation/ https://bugs.webkit.org/show_bug.cgi?id=10