brender-1997/3dfx/DEVCLUT.H
2022-05-03 14:31:40 -07:00

39 lines
515 B
C

/*
* Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved.
*
* Private device CLUT state
*/
#ifndef _DEVCLUT_H_
#define _DEVCLUT_H_
#ifdef __cplusplus
extern "C" {
#endif
#define CLUT_SIZE 256
/*
* Private state of device CLUT
*/
typedef struct br_device_clut {
/*
* Dispatch table
*/
struct br_device_clut_dispatch *dispatch;
/*
* Standard handle identifier
*/
char *identifier;
br_colour entries[CLUT_SIZE];
} br_device_clut;
#ifdef __cplusplus
};
#endif
#endif