unused argument

Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
This commit is contained in:
Sergey Isakov 2020-03-11 08:55:10 +03:00
parent 56ec675114
commit edd13a1ae6
2 changed files with 2 additions and 2 deletions

View File

@ -313,7 +313,7 @@ unsigned XImage::ToPNG(UINT8** Data, UINTN& OutSize)
* scale = 1 correspond to fill the rect with the image
* scale = 0.5 will reduce image
*/
unsigned XImage::FromSVG(const CHAR8 *SVGData, UINTN FileDataLength, float scale)
unsigned XImage::FromSVG(const CHAR8 *SVGData, float scale)
{
NSVGimage *SVGimage;
NSVGparser* p;

View File

@ -85,7 +85,7 @@ public:
void FlipRB(bool WantAlpha);
unsigned FromPNG(const UINT8 * Data, UINTN Lenght);
unsigned ToPNG(UINT8** Data, UINTN& OutSize);
unsigned FromSVG(const CHAR8 *SVGData, UINTN SVGDataLength, float scale);
unsigned FromSVG(const CHAR8 *SVGData, float scale);
void GetArea(const EG_RECT& Rect);
void GetArea(INTN x, INTN y, UINTN W, UINTN H);
void Draw(INTN x, INTN y, float scale);