27 lines
411 B
C
27 lines
411 B
C
/* @(#)bw2_ops.c 1.1 94/10/31 SMI */
|
|
|
|
/*
|
|
* Copyright 1987 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <pixrect/pixrect.h>
|
|
#include <pixrect/bw2var.h>
|
|
#include <pixrect/memvar.h>
|
|
|
|
struct pixrectops bw2_ops = {
|
|
mem_rop,
|
|
mem_stencil,
|
|
mem_batchrop,
|
|
0,
|
|
bw2_destroy,
|
|
mem_get,
|
|
mem_put,
|
|
mem_vector,
|
|
mem_region,
|
|
mem_putcolormap,
|
|
mem_getcolormap,
|
|
mem_putattributes,
|
|
mem_getattributes
|
|
};
|