aboutsummaryrefslogtreecommitdiffstats
path: root/src/net
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-03-30 06:59:43 +0200
committerSven Gothel <[email protected]>2011-03-30 06:59:43 +0200
commit55356d999638491980a90cb2263b55c5d2e53e91 (patch)
tree711457c8b1bedcf1d71fd0ba0252155b2895ce7f /src/net
parent5f0293b84d0146d9e750ea7e75caaa101ae3b3c3 (diff)
Font Refactoring ; Misc Changes ; Demo/Test Update
Font Refactoring - Notion of distributed FontSet - FontFactory may produce FontSet and/or a Font by absolute ttf file path - Adding support for free Ubuntu fonts - Remove Vertex.Factory dependency for Font creation - Typecast Impl - Fix CmapTable selection - Fix horizontal spacing of space - Misc Changes - HwTextRenderer - Offer reshape for perspective and orthogonal view - Expose PMVMatrix, allowing user to setup their own view math. Demo Update - Dump font set a-zA-Z... - Dump 'lazy dog ..' text - Action: - s: toogle 'font set' - f: toggle fps - v: toggle v-sync - space: toggle font (ubuntu/java) - formated screenshot filename w/ font name Test Update: - add font set iteration
Diffstat (limited to 'src/net')
-rw-r--r--src/net/java/dev/typecast/ot/table/BaseTable.java1
-rw-r--r--src/net/java/dev/typecast/ot/table/CvtTable.java1
-rw-r--r--src/net/java/dev/typecast/ot/table/Os2Table.java1
-rw-r--r--src/net/java/dev/typecast/ot/table/Program.java1
-rw-r--r--src/net/java/dev/typecast/ot/table/TableFactory.java1
5 files changed, 0 insertions, 5 deletions
diff --git a/src/net/java/dev/typecast/ot/table/BaseTable.java b/src/net/java/dev/typecast/ot/table/BaseTable.java
index 7e6c37a5e..f92de718f 100644
--- a/src/net/java/dev/typecast/ot/table/BaseTable.java
+++ b/src/net/java/dev/typecast/ot/table/BaseTable.java
@@ -24,7 +24,6 @@ import java.io.ByteArrayInputStream;
import java.io.DataInput;
import java.io.DataInputStream;
import java.io.IOException;
-import net.java.dev.typecast.ot.Fixed;
/**
* Baseline Table
diff --git a/src/net/java/dev/typecast/ot/table/CvtTable.java b/src/net/java/dev/typecast/ot/table/CvtTable.java
index 6035c6378..44dc0af41 100644
--- a/src/net/java/dev/typecast/ot/table/CvtTable.java
+++ b/src/net/java/dev/typecast/ot/table/CvtTable.java
@@ -8,7 +8,6 @@
package net.java.dev.typecast.ot.table;
-import java.io.ByteArrayInputStream;
import java.io.DataInput;
import java.io.IOException;
diff --git a/src/net/java/dev/typecast/ot/table/Os2Table.java b/src/net/java/dev/typecast/ot/table/Os2Table.java
index bb3b60101..9ec599724 100644
--- a/src/net/java/dev/typecast/ot/table/Os2Table.java
+++ b/src/net/java/dev/typecast/ot/table/Os2Table.java
@@ -52,7 +52,6 @@ package net.java.dev.typecast.ot.table;
import java.io.DataInput;
import java.io.IOException;
-import net.java.dev.typecast.ot.Fixed;
/**
* @version $Id: Os2Table.java,v 1.2 2004-12-09 23:46:21 davidsch Exp $
diff --git a/src/net/java/dev/typecast/ot/table/Program.java b/src/net/java/dev/typecast/ot/table/Program.java
index 6fd02a469..d4dd094e2 100644
--- a/src/net/java/dev/typecast/ot/table/Program.java
+++ b/src/net/java/dev/typecast/ot/table/Program.java
@@ -10,7 +10,6 @@ package net.java.dev.typecast.ot.table;
import java.io.DataInput;
import java.io.IOException;
-import java.io.ByteArrayInputStream;
/**
* @version $Id: Program.java,v 1.1.1.1 2004-12-05 23:14:57 davidsch Exp $
diff --git a/src/net/java/dev/typecast/ot/table/TableFactory.java b/src/net/java/dev/typecast/ot/table/TableFactory.java
index 632abcf44..28a7a4a97 100644
--- a/src/net/java/dev/typecast/ot/table/TableFactory.java
+++ b/src/net/java/dev/typecast/ot/table/TableFactory.java
@@ -51,7 +51,6 @@
package net.java.dev.typecast.ot.table;
import java.io.DataInputStream;
-import java.io.InputStream;
import java.io.IOException;
import net.java.dev.typecast.ot.OTFont;
import net.java.dev.typecast.ot.OTFontCollection;