brender-1997/ati/Devclut.h
2022-05-03 14:31:40 -07:00

42 lines
610 B
C

/*
* Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved.
*
* $Id: DEVCLUT.H 1.1 1996/05/13 14:28:34 philip Exp PHILIP $
* $Locker: PHILIP $
*
* Private device CLUT state
*/
#ifndef _DEVCLUT_H_
#define _DEVCLUT_H_
#ifdef __cplusplus
extern "C" {
#endif
/*
* Private state of device CLUT
*/
typedef struct br_device_clut {
/*
* Dispatch table
*/
struct br_device_clut_dispatch *dispatch;
/*
* Standard handle identifier
*/
char *identifier;
/*
* Parent device pixelmap
*/
br_device_pixelmap *devpm;
} br_device_clut;
#ifdef __cplusplus
};
#endif
#endif