~ubuntu-branches/ubuntu/oneiric/ghostscript/oneiric

« back to all changes in this revision

Viewing changes to base/gxline.h

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2011-07-15 16:49:55 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20110715164955-uga6qibao6kez05c
Tags: 9.04~dfsg~20110715-0ubuntu1
* New upstream release
   - GIT snapshot from Jult, 12 2011.
* debian/patches/020110406~a54df2d.patch,
  debian/patches/020110408~0791cc8.patch,
  debian/patches/020110408~507cbee.patch,
  debian/patches/020110411~4509a49.patch,
  debian/patches/020110412~78bb9a6.patch,
  debian/patches/020110418~a05ab8a.patch,
  debian/patches/020110420~20b6c78.patch,
  debian/patches/020110420~4ddefa2.patch: Removed upstream patches.
* debian/rules: Generate ABI version number (variable "abi") correctly,
  cutting off repackaging and pre-release parts.
* debian/rules: Added ./lcms2/ directory to DEB_UPSTREAM_REPACKAGE_EXCLUDES.
* debian/copyright: Added lcms2/* to the list of excluded files.
* debian/symbols.common: Updated for new upstream source. Applied patch
  which dpkg-gensymbols generated for debian/libgs9.symbols to this file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: gxline.h 10991 2010-03-30 18:40:34Z robin $ */
 
14
/* $Id$ */
15
15
/* Private line parameter definitions */
16
16
 
17
17
#ifndef gxline_INCLUDED
44
44
    gs_line_cap dash_cap;       /* Cap to use on start/end of dash segment */
45
45
    gs_line_join join;
46
46
    int curve_join;             /* <0 means use join between segments of */
47
 
                                /* flattened curves, >=0 means use this join */
 
47
                                /* flattened curves, >=0 means use this join */
48
48
    float miter_limit;
49
49
    float miter_check;          /* computed from miter limit, */
50
 
                                /* see gx_set_miter_limit and gs_stroke */
 
50
                                /* see gx_set_miter_limit and gs_stroke */
51
51
    float dot_length;
52
52
    bool dot_length_absolute;   /* if true, dot_length is 1/72" units */
53
53
    gs_matrix dot_orientation;  /* dot length is aligned with (1,0); */
54
 
                                /* must be xxyy or xyyx */
 
54
                                /* must be xxyy or xyyx */
55
55
    gx_dash_params dash;
56
56
} gx_line_params;
57
57