interpolation-error-correction.h 467 B

12345678910111213
  1. #pragma once
  2. #include "Vector2.h"
  3. #include "Shape.h"
  4. #include "BitmapRef.hpp"
  5. namespace msdfgen {
  6. void msdfInterpolationErrorCorrection(const BitmapRef<float, 3> &sdf, const Shape &shape, double range, const Vector2 &scale, const Vector2 &translate, bool overlapSupport = true);
  7. void msdfInterpolationErrorCorrection(const BitmapRef<float, 4> &sdf, const Shape &shape, double range, const Vector2 &scale, const Vector2 &translate, bool overlapSupport = true);
  8. }