diff options
Diffstat (limited to 'base/simscale.h')
-rw-r--r-- | base/simscale.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/base/simscale.h b/base/simscale.h index 65989581..e6ad7e46 100644 --- a/base/simscale.h +++ b/base/simscale.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2019 Artifex Software, Inc. +/* Copyright (C) 2001-2020 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or @@ -14,7 +14,6 @@ */ -/* $Id: simscale.h 6651 2006-03-13 16:18:19Z raph $ */ /* Definitions for image mask interpolation filter */ /* Requires scommon.h; strimpl.h if any templates are referenced */ @@ -32,11 +31,14 @@ struct stream_imscale_state_s { int src_y; int src_offset; int src_size; + int src_line_padded; byte *dst; - int dst_y; + int64_t dst_togo; /* down-counter of output bytes */ int dst_offset; int dst_size; + int dst_line_size; + int dst_line_padded; }; extern const stream_template s_imscale_template; |