Edit

kc3-lang/freetype/tests/issue-1063

Branch :

  • Show log

    Commit

  • Author : Alexei Podtelezhnikov
    Date : 2021-10-20 11:27:03
    Hash : e990c33f
    Message : * tests/issue-1063/main.c: s/PATH_MAX/FILENAME_MAX/. Closes !97 for Windows by using a standard macro.

  • main.c
  • #include <stdio.h>
    
    #include <freetype/freetype.h>
    #include <ft2build.h>
    
    
    int
    main( void )
    {
      FT_Library  library;
      FT_Face     face = NULL;
    
      /*
       * We assume that `FREETYPE_TESTS_DATA_DIR` was set by `meson test`.
       * Otherwise we default to `../tests/data`.
       *
       * TODO (David): Rewrite this to pass the test directory through the
       * command-line.
       */
      const char*  testdata_dir = getenv( "FREETYPE_TESTS_DATA_DIR" );
      char         filepath[FILENAME_MAX];
    
    
      snprintf( filepath, sizeof( filepath ), "%s/%s",
                testdata_dir ? testdata_dir : "../tests/data",
                "As.I.Lay.Dying.ttf" );
    
      FT_Init_FreeType( &library );
      if ( FT_New_Face( library, filepath, 0, &face ) != 0 )
      {
        fprintf( stderr, "Could not open file: %s\n", filepath );
        return 1;
      }
    
      for ( FT_ULong  i = 59; i < 171; i++ )
      {
        FT_UInt   gid  = FT_Get_Char_Index( face, i );
        FT_Error  code = FT_Load_Glyph( face, gid, FT_LOAD_DEFAULT );
    
    
        if ( code )
          printf( "unknown %d for char %lu, gid %u\n", code, i, gid );
      }
    
      return 0;
    }
    
    /* EOF */