~naesten/tex-live/trunk

« back to all changes in this revision

Viewing changes to libs/poppler/poppler-src/poppler/CairoRescaleBox.cc

  • Committer: karl
  • Date: 2018-01-09 18:53:05 UTC
  • Revision ID: svn-v4:c570f23f-e606-0410-a88d-b1316a301751:trunk/Build/source:46257
poppler 0.62.0, requiring C++11; luatex not updated yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
// under GPL version 2 or later
32
32
//
33
33
// Copyright (C) 2012 Hib Eris <hib@hiberis.nl>
34
 
// Copyright (C) 2012 Adrian Johnson <ajohnson@redneon.com>
 
34
// Copyright (C) 2012, 2017 Adrian Johnson <ajohnson@redneon.com>
35
35
//
36
36
// To see a description of the changes please see the Changelog file that
37
37
// came with your tarball or type make ChangeLog if you are building from git
41
41
 
42
42
/* This implements a box filter that supports non-integer box sizes */
43
43
 
44
 
#ifdef HAVE_CONFIG_H
45
44
#include <config.h>
46
 
#endif
47
45
 
 
46
#include <cstdint>
48
47
#include <stdint.h>
49
48
#include <stdio.h>
50
49
#include <assert.h>
51
50
#include <stdlib.h>
52
51
#include <math.h>
53
52
#include "goo/gmem.h"
54
 
#include "goo/gtypes_p.h"
55
53
#include "CairoRescaleBox.h"
56
54
 
57
55