ass_set_cache_limits method

void ass_set_cache_limits(
  1. Pointer<ASS_Renderer> priv,
  2. int glyph_max,
  3. int bitmap_max_size
)

\brief Set hard cache limits. Do not set, or set to zero, for reasonable defaults.

\param priv renderer handle \param glyph_max maximum number of cached glyphs \param bitmap_max_size maximum bitmap cache size (in MB)

Implementation

void ass_set_cache_limits(
  ffi.Pointer<ASS_Renderer> priv,
  int glyph_max,
  int bitmap_max_size,
) {
  return _ass_set_cache_limits(
    priv,
    glyph_max,
    bitmap_max_size,
  );
}