mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
22 lines
368 B
C
22 lines
368 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2025, Andreas Kling <andreas@ladybird.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace Gfx {
|
||
|
|
|
||
|
|
struct ShapeFeature {
|
||
|
|
char tag[4];
|
||
|
|
u32 value;
|
||
|
|
|
||
|
|
bool operator==(ShapeFeature const&) const = default;
|
||
|
|
bool operator!=(ShapeFeature const&) const = default;
|
||
|
|
};
|
||
|
|
|
||
|
|
using ShapeFeatures = Vector<ShapeFeature, 4>;
|
||
|
|
|
||
|
|
}
|