~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/display/nr-plain-stuff.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __NR_PLAIN_STUFF_H__
 
2
#define __NR_PLAIN_STUFF_H__
 
3
 
 
4
/*
 
5
 * Miscellaneous simple rendering utilities
 
6
 *
 
7
 * Author:
 
8
 *   Lauris Kaplinski <lauris@ximian.com>
 
9
 *
 
10
 * Copyright (C) 2001 Lauris Kaplinski and Ximian, Inc.
 
11
 *
 
12
 * Released under GNU GPL
 
13
 */
 
14
 
 
15
#include <glib/gtypes.h>
 
16
 
 
17
void nr_render_checkerboard_rgb (guchar *px, gint w, gint h, gint rs, gint xoff, gint yoff);
 
18
void nr_render_checkerboard_rgb_custom (guchar *px, gint w, gint h, gint rs, gint xoff, gint yoff, guint32 c0, guint32 c1, gint sizep2);
 
19
 
 
20
void nr_render_rgba32_rgb (guchar *px, gint w, gint h, gint rs, gint xoff, gint yoff, guint32 c);
 
21
 
 
22
#endif
 
23
 
 
24
/*
 
25
  Local Variables:
 
26
  mode:c++
 
27
  c-file-style:"stroustrup"
 
28
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
29
  indent-tabs-mode:nil
 
30
  fill-column:99
 
31
  End:
 
32
*/
 
33
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :