Implement text rendering using geometry shader

This commit is contained in:
jgk
2021-02-15 14:03:15 +01:00
parent 9747b5b876
commit 9f4497fb39
4 changed files with 27 additions and 12 deletions
+2
View File
@@ -1,8 +1,10 @@
module Geometry.Data
( Point2 (..)
, Point3 (..)
, Point4 (..)
)
where
type Point2 = (Float,Float)
type Point3 = (Float,Float,Float)
type Point4 = (Float,Float,Float,Float)