summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java
diff options
context:
space:
mode:
authorBogdan Gheorghe <gheorghe@ca.ibm.com>2012-01-18 15:35:33 -0500
committerBogdan Gheorghe <gheorghe@ca.ibm.com>2012-01-18 15:35:33 -0500
commit81769f86af686a9108c70f5eccca90f204a41cef (patch)
tree9912c22874e1dbac3277088c93428bafa59b1a4f /bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java
parent7a90781a0b4efe2d1023e9b9e3985d7144df555d (diff)
downloadeclipse.platform.swt-81769f86af686a9108c70f5eccca90f204a41cef.tar.gz
eclipse.platform.swt-81769f86af686a9108c70f5eccca90f204a41cef.tar.xz
eclipse.platform.swt-81769f86af686a9108c70f5eccca90f204a41cef.zip
Fix Cairo XOR and drawImage width and height
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java14
1 files changed, 1 insertions, 13 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java
index 3e4dabcbaa..4d60a7c5f0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cairo/org/eclipse/swt/internal/cairo/Cairo.java
@@ -39,20 +39,8 @@ public class Cairo extends Platform {
public static final int CAIRO_FORMAT_RGB24 = 1;
public static final int CAIRO_FORMAT_A8 = 2;
public static final int CAIRO_FORMAT_A1 = 3;
- public static final int CAIRO_OPERATOR_CLEAR = 0;
public static final int CAIRO_OPERATOR_SOURCE = 1;
- public static final int CAIRO_OPERATOR_DST = 2;
- public static final int CAIRO_OPERATOR_OVER = 3;
- public static final int CAIRO_OPERATOR_OVER_REVERSE = 4;
- public static final int CAIRO_OPERATOR_IN = 5;
- public static final int CAIRO_OPERATOR_IN_REVERSE = 6;
- public static final int CAIRO_OPERATOR_OUT = 7;
- public static final int CAIRO_OPERATOR_OUT_REVERSE = 8;
- public static final int CAIRO_OPERATOR_ATOP = 9;
- public static final int CAIRO_OPERATOR_ATOP_REVERSE = 10;
- public static final int CAIRO_OPERATOR_XOR = 11;
- public static final int CAIRO_OPERATOR_ADD = 12;
- public static final int CAIRO_OPERATOR_SATURATE = 13;
+ public static final int CAIRO_OPERATOR_OVER = 2;
public static final int CAIRO_OPERATOR_DIFFERENCE = 23;
public static final int CAIRO_FILL_RULE_WINDING = 0;
public static final int CAIRO_FILL_RULE_EVEN_ODD = 1;