 |
Index for Section 9 |
|
 |
Alphabetical listing for W |
|
 |
Bottom of page |
|
ws_color_map_functions(9s)
NAME
ws_color_map_functions - Graphics: Used by the display driver to specify
the routines that perform colormap functions for a particular graphics
display
SYNOPSIS
typedef struct {
caddr_t (*init_colormap_handle)();
int (*init_color_map)();
int (*load_color_map_entry)();
void(*clean_color_map)();
int (*video_on)();
int (*video_off)();
caddr_t colormap_handle;
int (*cmap_private)();
} ws_color_map_functions;
MEMBERS
init_colormap_handle
Specifies a pointer to the routine that initializes the colormap
handle.
init_color_map
Specifies a pointer to the routine that sets up a colormap on the
graphics board.
load_color_map_entry
Specifies a pointer to the routine that initializes a single entry in a
colormap.
clean_color_map
Specifies a pointer to the routine that reinitializes a colormap that
has become dirty.
video_on
Specifies a pointer to the routine that turns the screen on.
video_off
Specifies a pointer to the routine that turns the screen off.
colormap_handle
Specifies the address of driver-specific colormap information.
cmap_private
Reserved for future use by Compaq.
DESCRIPTION
The ws_colormap_functions data structure contains pointers to the routines
that perform colormap operations for the display driver.
FILES
<sys/wsdevice.h>
SEE ALSO
Data Structures: ws_screens(9s)
 |
Index for Section 9 |
|
 |
Alphabetical listing for W |
|
 |
Top of page |
|