summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/motif/org/eclipse/swt/internal/motif/XRenderPictureAttributes.java
blob: 2faec4b3661ea8fb5d31a43c05e22fa290d37c79 (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.motif;

 
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();
}