Shared FT_Face type definition for FreeType Scala Native bindings.
This package exists to allow multiple libraries to share the FT_Face type without circular dependencies. For example, both the freetype bindings and libcairo bindings need to work with FT_Face pointers.
Add the dependency to your build.sbt:
libraryDependencies += "io.github.edadma" %%% "freetype_face" % "0.0.2"import io.github.edadma.freetype_face.FT_Face
// FT_Face is defined as:
// type FT_Face = Ptr[CStruct0]This type is used by:
ISC