]> granicus.if.org Git - libass/commitdiff
drawing: remove unused field
authorwm4 <wm4@nowhere>
Wed, 14 Oct 2015 19:03:21 +0000 (21:03 +0200)
committerwm4 <wm4@nowhere>
Wed, 14 Oct 2015 19:03:21 +0000 (21:03 +0200)
libass/ass_drawing.c
libass/ass_drawing.h

index 6c99428f8dd1259156e33b71592dc199419a4f48..3428d2122a75a99d1d8c68d5fe40ad8dc3b1ec37 100644 (file)
@@ -294,7 +294,6 @@ ASS_Drawing *ass_drawing_new(ASS_Library *lib, FT_Library ftlib)
         return NULL;
     drawing->cbox.xMin = drawing->cbox.yMin = INT_MAX;
     drawing->cbox.xMax = drawing->cbox.yMax = INT_MIN;
-    drawing->ftlibrary = ftlib;
     drawing->library   = lib;
     drawing->scale_x = 1.;
     drawing->scale_y = 1.;
index 1e73c274555c5e70114b823386ba36000d833750..4d63201b615def379b2f0cbc11dc214ef8539a86 100644 (file)
@@ -56,7 +56,6 @@ typedef struct {
     int hash;           // hash value (for caching)
 
     // private
-    FT_Library ftlibrary;   // needed for font ops
     ASS_Library *library;
     ASS_DrawingToken *tokens;    // tokenized drawing
     double point_scale_x;