4c3f7d1290
Adds multi-channel SDF font texture generation and rendering support. Adds per-font oversampling support. Adds FontData import plugins (for dynamic fonts, BMFonts and monospaced image fonts), font texture cache pre-generation and loading. Adds BMFont binary format and outline support.
12 lines
221 B
C++
12 lines
221 B
C++
|
|
#pragma once
|
|
|
|
namespace msdfgen {
|
|
|
|
// ax^2 + bx + c = 0
|
|
int solveQuadratic(double x[2], double a, double b, double c);
|
|
|
|
// ax^3 + bx^2 + cx + d = 0
|
|
int solveCubic(double x[3], double a, double b, double c, double d);
|
|
|
|
}
|