xref: /aosp_15_r20/external/freetype/src/sdf/ftsdferrs.h (revision 63949dbd25bcc50c4e1178497ff9e9574d44fc5a)
1 /****************************************************************************
2  *
3  * ftsdferrs.h
4  *
5  *   Signed Distance Field error codes (specification only).
6  *
7  * Copyright (C) 2020-2023 by
8  * David Turner, Robert Wilhelm, and Werner Lemberg.
9  *
10  * Written by Anuj Verma.
11  *
12  * This file is part of the FreeType project, and may only be used,
13  * modified, and distributed under the terms of the FreeType project
14  * license, LICENSE.TXT.  By continuing to use, modify, or distribute
15  * this file you indicate that you have read the license and
16  * understand and accept it fully.
17  *
18  */
19 
20 
21 #ifndef FTSDFERRS_H_
22 #define FTSDFERRS_H_
23 
24 #include <freetype/ftmoderr.h>
25 
26 #undef FTERRORS_H_
27 
28 #undef  FT_ERR_PREFIX
29 #define FT_ERR_PREFIX  Sdf_Err_
30 #define FT_ERR_BASE    FT_Mod_Err_Sdf
31 
32 #include <freetype/fterrors.h>
33 
34 #endif /* FTSDFERRS_H_ */
35 
36 
37 /* END */
38