mirror of
https://github.com/thorvg/thorvg.git
synced 2025-07-24 23:28:57 +00:00
renderer: Fixed RenderUpdate::All flag fields.
All flag should have all bits set to 1.
This commit is contained in:
parent
ba2bd2383d
commit
8003c439fe
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ struct Compositor {
|
||||||
uint32_t opacity;
|
uint32_t opacity;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum RenderUpdateFlag {None = 0, Path = 1, Color = 2, Gradient = 4, Stroke = 8, Transform = 16, Image = 32, All = 64};
|
enum RenderUpdateFlag {None = 0, Path = 1, Color = 2, Gradient = 4, Stroke = 8, Transform = 16, Image = 32, All = 63};
|
||||||
|
|
||||||
struct RenderTransform
|
struct RenderTransform
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue