summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/XRenderPictureAttributes.java
blob: 95096336bbd64c0ce4f4a6faff9c87926bd5273d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.gtk;

 
public class XRenderPictureAttributes {
	public boolean repeat;
	public int /*long*/ alpha_map;
	public int alpha_x_origin;
	public int alpha_y_origin;
	public int clip_x_origin;
	public int clip_y_origin;
	public int /*long*/ clip_mask;
	public boolean graphics_exposures;
	public int subwindow_mode;
	public int poly_edge;
	public int poly_mode;
	public int /*long*/ dither;
	public boolean component_alpha;
	public static final int sizeof = OS.XRenderPictureAttributes_sizeof();
}