View Issue Details

IDProjectCategoryView StatusLast Update
0002652NoesisGUIUnitypublic2023-07-19 17:16
ReporterNirHasson Assigned Tosfernandez  
PrioritynormalSeverityminor 
Status resolvedResolutionduplicate 
Product Version3.2.1 
Target Version3.2.2Fixed in Version3.2.2 
Summary0002652: Opacity Mask Bug - Element Rendered Vertically Flipped
Description

An element with image based opacity mask is rendered vertically flipped when one of its parent items have opacity lower than 1.

Steps To Reproduce

Use the XAML below with one of your images and the result will be a flipped rectangle.

<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="OpacityMaskBug">

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition/>
        <RowDefinition/>
        <RowDefinition/>
    </Grid.RowDefinitions>
    <Grid.Background>
        <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
            <GradientStop Color="#FF8F1B9C"/>
            <GradientStop Color="#FF076D6F" Offset="1"/>
        </LinearGradientBrush>
    </Grid.Background>
    <Viewbox Grid.Row="1" Opacity="0.95">
        <Rectangle Grid.Row="1" x:Name="TargetRect" Fill="#FFD1F536" Width="256" Height="256">
            <Rectangle.OpacityMask>
                <ImageBrush ImageSource="Images/award_icon.png"/>
            </Rectangle.OpacityMask>
        </Rectangle>
    </Viewbox>
</Grid>

</Page>

PlatformAny

Relationships

duplicate of 0002594 resolvedsfernandez Complex OpacityMask with transparency provides different results in WPF and Noesis 3.2.0 

Activities

sfernandez

sfernandez

2023-07-19 17:16

manager   ~0008607

Fixed in rev. 12519

Issue History

Date Modified Username Field Change
2023-07-19 11:01 NirHasson New Issue
2023-07-19 11:47 jsantos Assigned To => sfernandez
2023-07-19 11:47 jsantos Status new => assigned
2023-07-19 11:47 jsantos Target Version => 3.2.2
2023-07-19 17:14 sfernandez Relationship added duplicate of 0002594
2023-07-19 17:15 sfernandez Product Version 3.2 => 3.2.1
2023-07-19 17:16 sfernandez Status assigned => resolved
2023-07-19 17:16 sfernandez Resolution open => duplicate
2023-07-19 17:16 sfernandez Fixed in Version => 3.2.2
2023-07-19 17:16 sfernandez Note Added: 0008607
2025-10-10 13:29 jsantos Category Unity3D => Unity