1d8f4669d5
The DRI3 extension provides mechanisms to translate between direct rendered buffers and X pixmaps. When combined with the Present extension, a complete direct rendering solution for OpenGL is provided. The direct rendered buffers are passed across the protocol via standard POSIX file descriptor passing mechanisms. On Linux, these buffers are DMA-BUF objects. DRI3 also includes a mechanism to translate between Linux Futexes and X Sync extension Fences. This provides a synchronization mechanism which can be used to serialize access to shared render buffers.
19 lines
466 B
Makefile
19 lines
466 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/11/01 20:42:32 wiz Exp $
|
|
|
|
DISTNAME= dri3proto-1.0
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://xorg.freedesktop.org/archive/individual/proto/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
#HOMEPAGE=
|
|
COMMENT= X11 extension for Direct Rendering Infrastructure V3
|
|
#LICENSE= # TODO: (see mk/license.mk)
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c
|
|
|
|
PKGCONFIG_OVERRIDE+= dri3proto.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|