~ubuntu-branches/ubuntu/natty/compiz-fusion-plugins-main/natty

« back to all changes in this revision

Viewing changes to colorfilter/data/filters/blackandwhite

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-10-19 12:07:20 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20101019120720-c3wffrxv7khh2ll8
Tags: 0.9.2.1-0ubuntu1
* New upstream release
* debian/control, debian/rules:
  - convert to cmake, remove autoconf, and convert to debhelper7
* debian/control:
  - bump compiz build-dep and deps to 0.9,
  - reintroduce coreabiversion trick to dep on the good package
* debian/install:
  - removed, seems we shipped all files anyway. Now install in the package
    directly
* debian/docs:
  - adapt to latest upstream shipped file
* debian/source:
  - switch to quilt format
* debian/patches/01-animation-defaults.patch,
  debian/patches/03_default_options.patch,
  debian/patches/06_bug326995.patch,
  debian/patches/08_disable_desktop_vpswitch.patch:
  - adapt to latest version
* debian/patches/02_fix_edges.patch:
  - removed for now: the plugin has been rewritten and have a different
    behavior
* debian/control:
  - remove compiz-fusion-bcop as a build-dep, now built in the core itself
* debian/rules:
  - add some switch to build in package mode, not in debug one

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
!!ARBfp1.0
 
2
TEMP tex, temp, black, white;
 
3
MOV black, {0, 0, 0, 0};
 
4
MOV white, {1, 1, 1, 1};
 
5
TEX tex, fragment.texcoord[0], texture[0], RECT;
 
6
DP3 temp.x, tex, {0.33333, 0.33333, 0.33333, 0};
 
7
ADD temp.x, temp.x, -0.5;
 
8
CMP temp, temp.x, black, white;
 
9
MOV temp.a, tex.a;
 
10
MOV result.color, temp;
 
11
END