Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1b99b2149ea4e3d5327f25de9d2f782ee66e03c5 (plain) (blame)
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, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.photon;


public class PgAlpha_t {
	public int alpha_op;
	// PgMap_t src_alpha_map;
	public short src_alpha_map_dim_w;
	public short src_alpha_map_dim_h;
	public short src_alpha_map_bpl;
	public short src_alpha_map_bpp;
	public int src_alpha_map_map;
	// PgGradient_t src_alpha_gradient; *** unused
	// PgMap_t dest_alpha_map; *** unused
	// PgGradient_t dest_alpha_gradient; *** unused
	public byte src_global_alpha;
	public byte dest_global_alpha;	
	// char spare[2]; *** unused
	public static final int sizeof = 104;
}

Back to the top