mirror of https://github.com/Chlumsky/msdfgen.git
14 lines
447 B
C++
14 lines
447 B
C++
|
|
#pragma once
|
|
|
|
#include "Vector2.h"
|
|
#include "Shape.h"
|
|
#include "BitmapRef.hpp"
|
|
|
|
namespace msdfgen {
|
|
|
|
void msdfPatchEdgeArtifacts(const BitmapRef<float, 3> &sdf, const Shape &shape, double range, const Vector2 &scale, const Vector2 &translate, bool overlapSupport = true);
|
|
void msdfPatchEdgeArtifacts(const BitmapRef<float, 4> &sdf, const Shape &shape, double range, const Vector2 &scale, const Vector2 &translate, bool overlapSupport = true);
|
|
|
|
}
|