01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.swt.internal.motif;
11:
12: public class XRenderPictureAttributes {
13: public boolean repeat;
14: public int /*long*/alpha_map;
15: public int alpha_x_origin;
16: public int alpha_y_origin;
17: public int clip_x_origin;
18: public int clip_y_origin;
19: public int /*long*/clip_mask;
20: public boolean graphics_exposures;
21: public int subwindow_mode;
22: public int poly_edge;
23: public int poly_mode;
24: public int /*long*/dither;
25: public boolean component_alpha;
26: public static final int sizeof = OS
27: .XRenderPictureAttributes_sizeof();
28: }
|