Lines Matching defs:error
53 FT_Error error;
58 error = FT_New_Face(engine, fontPathName, 0, &fFace);
60 if (error != 0) {
61 printf("OOPS! Got error code %d\n", error);
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92);
82 if (error != 0) {
146 FT_Error error;
148 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT);
150 if (error != 0) {
160 FT_Error error;
162 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT);
164 if (error != 0) {