libic - Image compositing library libic is a generic image compositing library. libic provides Porter/Duff compositing of images and implicit mask generation for geometric primitives including trapezoids, triangles, and rectangles. The semantics of libic are designed to precisely match the specification of the X Render extension. In fact, the initial implementation of libic was lifted from the reference implementation of RENDER from the X server. However, libic is intended to be useful independent of the X Window System. The public interface exported by libic does not contain any X-specific data structures. Carl Worth cworth@isi.edu Keith Packard (keithp@keithp.com) originally wrote all the original RENDER code that was yanked out to become libic. Keith also provided impetus and guidance in the development of libic.
21 lines
558 B
Makefile
21 lines
558 B
Makefile
# $NetBSD: buildlink2.mk,v 1.1.1.1 2003/11/27 18:26:07 marc Exp $
|
|
|
|
.if !defined(LIBIC_BUILDLINK2_MK)
|
|
LIBIC_BUILDLINK2_MK= # defined
|
|
|
|
BUILDLINK_PACKAGES+= libic
|
|
BUILDLINK_DEPENDS.libic?= libic>=0.1.5
|
|
BUILDLINK_PKGSRCDIR.libic?= ../../wip/libic
|
|
|
|
EVAL_PREFIX+= BUILDLINK_PREFIX.libic=libic
|
|
BUILDLINK_PREFIX.libic_DEFAULT= ${LOCALBASE}
|
|
BUILDLINK_FILES.libic+= include/ic.h
|
|
BUILDLINK_FILES.libic+= lib/libic.*
|
|
|
|
.include "../../wip/libpixregion/buildlink2.mk"
|
|
|
|
BUILDLINK_TARGETS+= libic-buildlink
|
|
|
|
libic-buildlink: _BUILDLINK_USE
|
|
|
|
.endif # LIBIC_BUILDLINK2_MK
|