home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / printing / ghostscrip / source / _gs / h / gxop1 < prev    next >
Encoding:
Text File  |  1991-10-25  |  1.9 KB  |  56 lines

  1. /* Copyright (C) 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gxop1.h */
  21. /* Type 1 state shared between interpreter and compiled fonts. */
  22.  
  23. #define ostack_size 24
  24.  
  25. /* Define the fixed-point coefficient structure */
  26. /* for avoiding floating point. */
  27. #define max_coeff_bits 11        /* max coefficient in char space */
  28. typedef struct {
  29.     long xx, xy, yx, yy;
  30.     int skewed;
  31.     int shift;            /* see c_fixed */
  32.     fixed round;            /* ditto */
  33. } fixed_coeff;
  34. typedef struct gs_op1_state_s {
  35.     struct gx_path_s *ppath;
  36.     struct gs_type1_state_s *pis;
  37.     fixed_coeff fc;
  38.     fixed px, py;
  39.     fixed ostack[ostack_size];
  40.     fixed _ss *osp;            /* not used when interpreting */
  41. #define cstack s.ostack
  42. #define cs0 cstack[0]
  43. #define ics0 fixed2int_var(cs0)
  44. #define cs1 cstack[1]
  45. #define ics1 fixed2int_var(cs1)
  46. #define cs2 cstack[2]
  47. #define ics2 fixed2int_var(cs2)
  48. #define cs3 cstack[3]
  49. #define ics3 fixed2int_var(cs3)
  50. #define cs4 cstack[4]
  51. #define ics4 fixed2int_var(cs4)
  52. #define cs5 cstack[5]
  53. #define ics5 fixed2int_var(cs5)
  54. } gs_op1_state;
  55. typedef gs_op1_state _ss *is_ptr;
  56.