File: pgmimaging.defs

package info (click to toggle)
pigment-python 0.3.12-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,820 kB
  • ctags: 2,955
  • sloc: python: 11,664; sh: 10,131; makefile: 251; ansic: 97
file content (18 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;; -*- mode: scheme; coding: utf-8 -*-

; function definitions

(define-function linear_alpha_gradient
  (unblock-threads #t)
  (c-name "pgm_imaging_linear_alpha_gradient")
  (return-type "GdkPixbuf*")
  (parameters
    '("const-GdkPixbuf*" "pixbuf")
    '("gfloat" "start_x")
    '("gfloat" "start_y")
    '("gfloat" "start_alpha")
    '("gfloat" "end_x")
    '("gfloat" "end_y")
    '("gfloat" "end_alpha")
  )
)