summaryrefslogtreecommitdiff
path: root/render/render.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-03-04 01:08:51 +0000
committerDana Jansens <danakj@orodu.net>2007-03-04 01:08:51 +0000
commit3b77950a79bd2ad93ff69166ed782438ef4c6d13 (patch)
tree7a14ccb512708d60067d1417ae15e176e6e08af6 /render/render.h
parentac6fe9800850a4ce31efc610720099b60c2b7ff2 (diff)
add font weight and font slant enumerations
Diffstat (limited to 'render/render.h')
-rw-r--r--render/render.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/render/render.h b/render/render.h
index da34a6a8..c5f98381 100644
--- a/render/render.h
+++ b/render/render.h
@@ -84,6 +84,20 @@ typedef enum {
RR_JUSTIFY_RIGHT
} RrJustify;
+typedef enum {
+ RR_FONTWEIGHT_LIGHT,
+ RR_FONTWEIGHT_NORMAL,
+ RR_FONTWEIGHT_SEMIBOLD,
+ RR_FONTWEIGHT_BOLD,
+ RR_FONTWEIGHT_ULTRABOLD
+} RrFontWeight;
+
+typedef enum {
+ RR_FONTSLANT_NORMAL,
+ RR_FONTSLANT_ITALIC,
+ RR_FONTSLANT_OBLIQUE
+} RrFontSlant;
+
struct _RrSurface {
RrSurfaceColorType grad;
RrReliefType relief;