summaryrefslogtreecommitdiff
path: root/vcl/source/fontsubset/ttcr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/fontsubset/ttcr.cxx')
-rw-r--r--vcl/source/fontsubset/ttcr.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/vcl/source/fontsubset/ttcr.cxx b/vcl/source/fontsubset/ttcr.cxx
index 3dca37ce8f6e..fdc7d1518619 100644
--- a/vcl/source/fontsubset/ttcr.cxx
+++ b/vcl/source/fontsubset/ttcr.cxx
@@ -35,7 +35,6 @@
#include "list.h"
#include "string.h"
-
namespace vcl
{
@@ -169,7 +168,6 @@ static int NameRecordCompareF(const void *l, const void *r)
return 0;
}
-
static sal_uInt32 CheckSum(sal_uInt32 *ptr, sal_uInt32 length)
{
sal_uInt32 sum = 0;
@@ -259,7 +257,6 @@ int StreamToMemory(TrueTypeCreator *_this, sal_uInt8 **ptr, sal_uInt32 *length)
n = listCount(_this->tables);
numTables = (sal_uInt16) n;
-
TableEntry* te = (TableEntry*)scalloc(n, sizeof(TableEntry));
listToFirst(_this->tables);
@@ -348,8 +345,6 @@ int StreamToFile(TrueTypeCreator *_this, const char* fname)
return r;
}
-
-
/*
* TrueTypeTable private methods
*/
@@ -358,8 +353,6 @@ int StreamToFile(TrueTypeCreator *_this, const char* fname)
#define TABLESIZE_hhea 36
#define TABLESIZE_maxp 32
-
-
/* Table data points to
* --------------------------------------------
* generic tdata_generic struct
@@ -373,7 +366,6 @@ int StreamToFile(TrueTypeCreator *_this, const char* fname)
*
*/
-
#define CMAP_SUBTABLE_INIT 10
#define CMAP_SUBTABLE_INCR 10
#define CMAP_PAIR_INIT 500
@@ -413,7 +405,6 @@ typedef struct {
void *ptr; /* format-specific pointer */
} tdata_post;
-
/* allocate memory for a TT table */
static sal_uInt8 *ttmalloc(sal_uInt32 nbytes)
{
@@ -568,7 +559,6 @@ static int GetRawData_generic(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32
return TTCR_OK;
}
-
static int GetRawData_head(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag)
{
*len = TABLESIZE_head;
@@ -701,8 +691,6 @@ static sal_uInt8 *PackCmapType6(CmapSubTable *s, sal_uInt32 *length)
return ptr;
}
-
-
/* XXX it only handles Format 0 encoding tables */
static sal_uInt8 *PackCmap(CmapSubTable *s, sal_uInt32 *length)
{
@@ -762,7 +750,6 @@ static int GetRawData_cmap(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *le
return TTCR_OK;
}
-
static int GetRawData_name(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag)
{
list l;
@@ -862,10 +849,6 @@ static int GetRawData_post(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *le
return ret;
}
-
-
-
-
static struct {
sal_uInt32 tag;
int (*f)(TrueTypeTable *, sal_uInt8 **, sal_uInt32 *, sal_uInt32 *);
@@ -881,7 +864,6 @@ static struct {
{T_name, GetRawData_name},
{T_post, GetRawData_post}
-
};
/*
@@ -934,7 +916,6 @@ TrueTypeTable *TrueTypeTableNew_head(sal_uInt32 fontRevision,
TrueTypeTable* table = (TrueTypeTable*)smalloc(sizeof(TrueTypeTable));
sal_uInt8* ptr = (sal_uInt8*)ttmalloc(TABLESIZE_head);
-
PutUInt32(0x00010000, ptr, 0, 1); /* version */
PutUInt32(fontRevision, ptr, 4, 1);
PutUInt32(0x5F0F3CF5, ptr, 12, 1); /* magic number */
@@ -1272,7 +1253,6 @@ sal_uInt32 glyfCount(const TrueTypeTable *table)
return listCount((list) table->data);
}
-
void nameAdd(TrueTypeTable *table, NameRecord *nr)
{
list l;
@@ -1348,7 +1328,6 @@ static void ProcessTables(TrueTypeCreator *tt)
glyfLen += gd->nbytes;
/* XXX if (gd->nbytes & 1) glyfLen++; */
-
assert(gd->newID == i);
gid[i++] = gd->glyphID;
/* gd->glyphID = i++; */
@@ -1524,7 +1503,6 @@ extern "C"
free(_this);
}
-
/**
* Destructor for the TrueTypeTable object.
*/
@@ -1547,7 +1525,6 @@ extern "C"
}
}
-
#ifdef TEST_TTCR
_inline sal_uInt32 mkTag(sal_uInt8 a, sal_uInt8 b, sal_uInt8 c, sal_uInt8 d) {
return (a << 24) | (b << 16) | (c << 8) | d;
@@ -1584,7 +1561,6 @@ int main(void)
free(t6);
free(t7);
-
StreamToFile(ttcr, "ttcrout.ttf");
TrueTypeCreatorDispose(ttcr);