chromium/third_party/freetype-testing/src/fuzzing/src/visitors/facevisitor-loadglyphs.cpp

// facevisitor-loadglyphs.cpp
//
//   Implementation of FaceVisitorLoadGlyphs.
//
// Copyright 2018-2019 by
// Armin Hasitzka.
//
// This file is part of the FreeType project, and may only be used,
// modified, and distributed under the terms of the FreeType project
// license, LICENSE.TXT.  By continuing to use, modify, or distribute
// this file you indicate that you have read the license and
// understand and accept it fully.


#include "visitors/facevisitor-loadglyphs.h"

#include <cassert>

#include "utils/logging.h"


  freetype::FaceVisitorLoadGlyphs::
  FaceVisitorLoadGlyphs( FT_Long  num_used_glyphs )
  {}


  void
  freetype::FaceVisitorLoadGlyphs::
  run( Unique_FT_Face  face )
  {}


  void
  freetype::FaceVisitorLoadGlyphs::
  set_num_used_glyphs( FT_Long  glyphs )
  {}


  void
  freetype::FaceVisitorLoadGlyphs::
  add_transformation( FT_Matrix*  matrix,
                      FT_Vector*  delta )
  {}


  void
  freetype::FaceVisitorLoadGlyphs::
  add_load_flags( FT_Int32  load_flags )
  {}