Fix ordering of MaskNode Trait Bounds

Test Plan: -

Reviewers: 

Pull Request: https://github.com/GraphiteEditor/Graphite/pull/1157
This commit is contained in:
Dennis Kobert 2023-04-24 20:02:45 +02:00 committed by Keavon Chambers
parent 366906b956
commit 497bf3dfc5
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ fn mask_image<
// Input image // Input image
Input: Transform + RasterMut<Pixel = _P>, Input: Transform + RasterMut<Pixel = _P>,
// Stencil // Stencil
Stencil: Sample<Pixel = _S> + Transform, Stencil: Transform + Sample<Pixel = _S>,
>( >(
mut image: Input, mut image: Input,
stencil: Stencil, stencil: Stencil,