Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-09-24 18:45:57 +0000
committerSilenio Quarti2012-09-24 18:45:57 +0000
commit5721cfd149c1026b4c21848f64c2b57027ac8c7e (patch)
treeb16600bca597a4a0dc9d27194d5761c53151a395 /bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java
parentbc8036435837353efa5da8c19b6a3003dbb86045 (diff)
downloadeclipse.platform.swt-5721cfd149c1026b4c21848f64c2b57027ac8c7e.tar.gz
eclipse.platform.swt-5721cfd149c1026b4c21848f64c2b57027ac8c7e.tar.xz
eclipse.platform.swt-5721cfd149c1026b4c21848f64c2b57027ac8c7e.zip
Make 64-bit the default source code
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java
index 33f0b1fc2f..72e694cfd9 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSGraphicsContext.java
@@ -16,7 +16,7 @@ public NSGraphicsContext() {
super();
}
-public NSGraphicsContext(int /*long*/ id) {
+public NSGraphicsContext(long /*int*/ id) {
super(id);
}
@@ -25,7 +25,7 @@ public NSGraphicsContext(id id) {
}
public static NSGraphicsContext currentContext() {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_currentContext);
+ long /*int*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_currentContext);
return result != 0 ? new NSGraphicsContext(result) : null;
}
@@ -34,25 +34,25 @@ public void flushGraphics() {
}
public static NSGraphicsContext graphicsContextWithBitmapImageRep(NSBitmapImageRep bitmapRep) {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_graphicsContextWithBitmapImageRep_, bitmapRep != null ? bitmapRep.id : 0);
+ long /*int*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_graphicsContextWithBitmapImageRep_, bitmapRep != null ? bitmapRep.id : 0);
return result != 0 ? new NSGraphicsContext(result) : null;
}
-public static NSGraphicsContext graphicsContextWithGraphicsPort(int /*long*/ graphicsPort, boolean initialFlippedState) {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_graphicsContextWithGraphicsPort_flipped_, graphicsPort, initialFlippedState);
+public static NSGraphicsContext graphicsContextWithGraphicsPort(long /*int*/ graphicsPort, boolean initialFlippedState) {
+ long /*int*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_graphicsContextWithGraphicsPort_flipped_, graphicsPort, initialFlippedState);
return result != 0 ? new NSGraphicsContext(result) : null;
}
public static NSGraphicsContext graphicsContextWithWindow(NSWindow window) {
- int /*long*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_graphicsContextWithWindow_, window != null ? window.id : 0);
+ long /*int*/ result = OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_graphicsContextWithWindow_, window != null ? window.id : 0);
return result != 0 ? new NSGraphicsContext(result) : null;
}
-public int /*long*/ graphicsPort() {
+public long /*int*/ graphicsPort() {
return OS.objc_msgSend(this.id, OS.sel_graphicsPort);
}
-public int /*long*/ imageInterpolation() {
+public long /*int*/ imageInterpolation() {
return OS.objc_msgSend(this.id, OS.sel_imageInterpolation);
}
@@ -80,7 +80,7 @@ public void saveGraphicsState() {
OS.objc_msgSend(this.id, OS.sel_saveGraphicsState);
}
-public void setCompositingOperation(int /*long*/ operation) {
+public void setCompositingOperation(long /*int*/ operation) {
OS.objc_msgSend(this.id, OS.sel_setCompositingOperation_, operation);
}
@@ -88,7 +88,7 @@ public static void setCurrentContext(NSGraphicsContext context) {
OS.objc_msgSend(OS.class_NSGraphicsContext, OS.sel_setCurrentContext_, context != null ? context.id : 0);
}
-public void setImageInterpolation(int /*long*/ interpolation) {
+public void setImageInterpolation(long /*int*/ interpolation) {
OS.objc_msgSend(this.id, OS.sel_setImageInterpolation_, interpolation);
}

Back to the top