Re: RFR: 8218973: SVG with masking is not rendering image with mask effect [v13]

2020-09-30 Thread Kevin Rushforth
On Thu, 17 Sep 2020 06:35:16 GMT, Arun Joseph  wrote:

>> The fix works when the shape is displayed initially on the screen, but fails 
>> when we scroll the image off-screen and
>> then, back. To see the issue, you need to either rotate the gradient 
>> transform (by 90 degrees) or use a circle (any
>> shape other than a rectangle) as the mask shape, as this bug can't be seen 
>> using a mask rectangle.
>
> To reproduce the above issue, you can either modify ` id='Gradient' gradientTransform="rotate(90)">` or
> `  
> ` in `svgMask.html` and resize the
> window for scrolling.

This PR is on hold. It can be reopened or a new PR can be sent as and when it 
is ready to proceed.

-

PR: https://git.openjdk.java.net/jfx/pull/213


Re: RFR: 8218973: SVG with masking is not rendering image with mask effect [v13]

2020-09-16 Thread Arun Joseph
On Thu, 17 Sep 2020 06:29:36 GMT, Arun Joseph  wrote:

>> Bhawesh Choudhary has updated the pull request incrementally with one 
>> additional commit since the last revision:
>> 
>>   Updates as per review comments
>
> The fix works when the shape is displayed initially on the screen, but fails 
> when we scroll the image off-screen and
> then, back. To see the issue, you need to either rotate the gradient 
> transform (by 90 degrees) or use a circle (any
> shape other than a rectangle) as the mask shape, as this bug can't be seen 
> using a mask rectangle.

To reproduce the above issue, you can either you `` or
`  
` in `svgMask.html` and resize the
window for scrolling.

-

PR: https://git.openjdk.java.net/jfx/pull/213


Re: RFR: 8218973: SVG with masking is not rendering image with mask effect [v13]

2020-09-16 Thread Arun Joseph
On Mon, 14 Sep 2020 13:47:28 GMT, Bhawesh Choudhary  
wrote:

>> Root cause of issue is Specifying a image mask from GraphicsContextJava.cpp 
>> in WebKit was not implemented, so masking
>> doesn't take place at all while rendering SVGRect. to fix this issue add 
>> implementation of function clipToImageBuffer()
>> in GraphicsContextJava.cpp and send clip image to 
>> WCGraphicsPrismContext.java  While rendering in
>> WCGraphicsPrismContext.java if image clip mask is available, use it for 
>> rendering using MaskTextureGraphics interface
>> otherwise use usual way of rendering.
>
> Bhawesh Choudhary has updated the pull request incrementally with one 
> additional commit since the last revision:
> 
>   Updates as per review comments

The fix works when the shape is displayed initially on the screen, but fails 
when we scroll the image off-screen and
then, back. To see the issue, you need to either rotate the gradient transform 
(by 90 degrees) or use a circle (any
shape other than a rectangle) as the mask shape, as this bug can't be seen 
using a mask rectangle.

-

PR: https://git.openjdk.java.net/jfx/pull/213


Re: RFR: 8218973: SVG with masking is not rendering image with mask effect [v13]

2020-09-14 Thread Bhawesh Choudhary
> Root cause of issue is Specifying a image mask from GraphicsContextJava.cpp 
> in WebKit was not implemented, so masking
> doesn't take place at all while rendering SVGRect. to fix this issue add 
> implementation of function clipToImageBuffer()
> in GraphicsContextJava.cpp and send clip image to WCGraphicsPrismContext.java 
>  While rendering in
> WCGraphicsPrismContext.java if image clip mask is available, use it for 
> rendering using MaskTextureGraphics interface
> otherwise use usual way of rendering.

Bhawesh Choudhary has updated the pull request incrementally with one 
additional commit since the last revision:

  Updates as per review comments

-

Changes:
  - all: https://git.openjdk.java.net/jfx/pull/213/files
  - new: https://git.openjdk.java.net/jfx/pull/213/files/ed2dd092..f26f03df

Webrevs:
 - full: https://webrevs.openjdk.java.net/?repo=jfx&pr=213&range=12
 - incr: https://webrevs.openjdk.java.net/?repo=jfx&pr=213&range=11-12

  Stats: 336 lines in 6 files changed: 173 ins; 152 del; 11 mod
  Patch: https://git.openjdk.java.net/jfx/pull/213.diff
  Fetch: git fetch https://git.openjdk.java.net/jfx pull/213/head:pull/213

PR: https://git.openjdk.java.net/jfx/pull/213