summaryrefslogtreecommitdiff
path: root/src/raster
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2013-03-14 11:21:17 +0100
committerWerner Lemberg <wl@gnu.org>2013-03-14 11:21:17 +0100
commite3c9301581a450fae5db73a3b94b10ed6a0aeb5e (patch)
treedc078dba342716dbc7508c54277376d25b23c931 /src/raster
parent059bc335ce42220b222763379e89d0cbf2b949eb (diff)
downloadfreetype2-e3c9301581a450fae5db73a3b94b10ed6a0aeb5e.tar.gz
*/*: Use FT_Err_Ok only.
This is a purely mechanical conversion.
Diffstat (limited to 'src/raster')
-rw-r--r--src/raster/ftraster.c2
-rw-r--r--src/raster/ftrend1.c4
-rw-r--r--src/raster/rastpic.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/raster/ftraster.c b/src/raster/ftraster.c
index 33c7093c5..b7c4cf518 100644
--- a/src/raster/ftraster.c
+++ b/src/raster/ftraster.c
@@ -235,7 +235,7 @@
#include "rasterrs.h"
-#define Raster_Err_None Raster_Err_Ok
+#define Raster_Err_None FT_Err_Ok
#define Raster_Err_Not_Ini Raster_Err_Raster_Uninitialized
#define Raster_Err_Overflow Raster_Err_Raster_Overflow
#define Raster_Err_Neg_Height Raster_Err_Raster_Negative_Height
diff --git a/src/raster/ftrend1.c b/src/raster/ftrend1.c
index 878f509a7..aa7f6d566 100644
--- a/src/raster/ftrend1.c
+++ b/src/raster/ftrend1.c
@@ -38,7 +38,7 @@
library->raster_pool,
library->raster_pool_size );
- return Raster_Err_Ok;
+ return FT_Err_Ok;
}
@@ -62,7 +62,7 @@
const FT_Matrix* matrix,
const FT_Vector* delta )
{
- FT_Error error = Raster_Err_Ok;
+ FT_Error error = FT_Err_Ok;
if ( slot->format != render->glyph_format )
diff --git a/src/raster/rastpic.c b/src/raster/rastpic.c
index 853286309..167a8fc43 100644
--- a/src/raster/rastpic.c
+++ b/src/raster/rastpic.c
@@ -4,7 +4,7 @@
/* */
/* The FreeType position independent code services for raster module. */
/* */
-/* Copyright 2009, 2010, 2012 by */
+/* Copyright 2009, 2010, 2012, 2013 by */
/* Oran Agra and Mickey Gabel. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -50,7 +50,7 @@
ft_raster1_renderer_class_pic_init( FT_Library library )
{
FT_PIC_Container* pic_container = &library->pic_container;
- FT_Error error = Raster_Err_Ok;
+ FT_Error error = FT_Err_Ok;
RasterPIC* container = NULL;
FT_Memory memory = library->memory;