blob: e8e0797d0d76111ffc22977909a8eea0958f5e66 [file] [log] [blame]
/*******************************************************************************
* 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.gtk;
public class GdkVisual {
public int type;
public int depth;
public int byte_order;
public int colormap_size;
public int bits_per_rgb;
public int red_mask;
public int red_shift;
public int red_prec;
public int green_mask;
public int green_shift;
public int green_prec;
public int blue_mask;
public int blue_shift;
public int blue_prec;
}