mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 15:26:00 +02:00
FontEffect support - outlined fonts
This commit is contained in:
parent
474bad09b2
commit
89bf475045
10 changed files with 385 additions and 8 deletions
|
@ -21,6 +21,14 @@ public:
|
|||
mHeight = 0;
|
||||
}
|
||||
|
||||
Rect(float x, float y, float width, float height)
|
||||
{
|
||||
mX = x;
|
||||
mY = y;
|
||||
mWidth = width;
|
||||
mHeight = height;
|
||||
}
|
||||
|
||||
bool operator!=(const Rect& r2)
|
||||
{
|
||||
return (mX != r2.mX) || (mY != r2.mY) || (mWidth != r2.mWidth) || (mHeight != r2.mHeight);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue