[cairo-commit] glitz/src/glx Makefile.am, NONE, 1.1 glitz-glx.h,
NONE, 1.1 glitz-glx.man, NONE, 1.1 glitz-glx.pc.in, NONE,
1.1 glitz_glx_context.c, NONE, 1.1 glitz_glx_drawable.c, NONE,
1.1 glitz_glx_extension.c, NONE, 1.1 glitz_glx_format.c, NONE,
1.1 glitz_glx_info.c, NONE, 1.1 glitz_glx_pbuffer.c, NONE,
1.1 glitz_glxext.h, NONE, 1.1 glitz_glxint.h, NONE, 1.1
David Reveman
commit at pdx.freedesktop.org
Wed Nov 3 14:51:00 PST 2004
- Previous message: [cairo-commit] glitz/src/agl Makefile.am, NONE, 1.1 glitz-agl.h,
NONE, 1.1 glitz-agl.man, NONE, 1.1 glitz-agl.pc.in, NONE,
1.1 glitz_agl_context.c, NONE, 1.1 glitz_agl_drawable.c, NONE,
1.1 glitz_agl_extension.c, NONE, 1.1 glitz_agl_format.c, NONE,
1.1 glitz_agl_info.c, NONE, 1.1 glitz_agl_pbuffer.c, NONE,
1.1 glitz_aglint.h, NONE, 1.1
- Next message: [cairo-commit] glitz/src Makefile.am, 1.7, 1.8 glitz-agl.h, 1.5,
NONE glitz-glx.h, 1.5, NONE glitz.c, 1.29, 1.30 glitz.h, 1.24,
1.25 glitz.pc.in, NONE, 1.1 glitz_agl_context.c, 1.10,
NONE glitz_agl_extension.c, 1.14, NONE glitz_agl_format.c, 1.7,
NONE glitz_agl_info.c, 1.15, NONE glitz_agl_pbuffer.c, 1.6,
NONE glitz_agl_surface.c, 1.21, NONE glitz_aglint.h, 1.14,
NONE glitz_buffer.c, 1.4, 1.5 glitz_compose.c, 1.9,
1.10 glitz_drawable.c, NONE, 1.1 glitz_format.c, 1.8,
1.9 glitz_geometry.c, 1.3, 1.4 glitz_gl.h, 1.12,
1.13 glitz_glx_context.c, 1.17, NONE glitz_glx_extension.c,
1.16, NONE glitz_glx_format.c, 1.11, NONE glitz_glx_info.c,
1.22, NONE glitz_glx_pbuffer.c, 1.5, NONE glitz_glx_surface.c,
1.22, NONE glitz_glxext.h, 1.7, NONE glitz_glxint.h, 1.18,
NONE glitz_operator.c, 1.5, 1.6 glitz_pixel.c, 1.12,
1.13 glitz_program.c, 1.15, 1.16 glitz_rect.c, 1.13,
1.14 glitz_region.c, NONE, 1.1 glitz_surface.c, 1.23,
1.24 glitz_texture.c, 1.15, 1.16 glitz_util.c, 1.10,
1.11 glitzint.h, 1.29, 1.30
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: davidr
Update of /cvs/cairo/glitz/src/glx
In directory gabe:/tmp/cvs-serv31664a/src/glx
Added Files:
Makefile.am glitz-glx.h glitz-glx.man glitz-glx.pc.in
glitz_glx_context.c glitz_glx_drawable.c glitz_glx_extension.c
glitz_glx_format.c glitz_glx_info.c glitz_glx_pbuffer.c
glitz_glxext.h glitz_glxint.h
Log Message:
Source tree restructuring and switch to new drawable interface
--- NEW FILE: Makefile.am ---
if GLITZ_BUILD_GLX_BACKEND
INCLUDES = \
$(GLITZ_INC) \
$(GLX_CFLAGS)
lib_LTLIBRARIES = libglitz-glx.la
include_HEADERS = glitz-glx.h
libglitz_glx_la_SOURCES = \
glitz-glx.h \
glitz_glx_drawable.c \
glitz_glx_format.c \
glitz_glx_info.c \
glitz_glx_extension.c \
glitz_glx_context.c \
glitz_glx_pbuffer.c \
glitz_glxext.h \
glitz_glxint.h
libglitz_glx_la_LDFLAGS = -version-info @VERSION_INFO@ -no-undefined
libglitz_glx_la_LIBADD = $(GLITZ_LIB) $(GLX_LIBS)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = glitz-glx.pc
endif
EXTRA_DIST = \
glitz-glx.h \
glitz_glx_drawable.c \
glitz_glx_format.c \
glitz_glx_info.c \
glitz_glx_extension.c \
glitz_glx_context.c \
glitz_glx_pbuffer.c \
glitz_glxext.h \
glitz_glxint.h \
glitz-glx.pc.in \
glitz-glx.man
--- NEW FILE: glitz-glx.h ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz-glx.man ---
.\"
.\"
.de TQ
.br
.ns
.TP
\\$1
..
.TH GLITZ-GLX 3 "Version 1.0"
.SH NAME
GLITZ-GLX \- GLX interface to glitz
.SH SYNOPSIS
.nf
.B #include <glitz-glx.h>
.fi
.SH DESCRIPTION
GLX interface to glitz.
.SH AUTHOR
David Reveman
.SH "SEE ALSO"
.BR GLITZ (3)
--- NEW FILE: glitz-glx.pc.in ---
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: libglitz-glx
Description: OpenGL compositing library (GLX backend)
Version: @VERSION@
Requires: glitz
Libs: -L${libdir} -lglitz-glx @GLX_LIBS@
Cflags: -I${includedir} @GLX_CFLAGS@
--- NEW FILE: glitz_glx_context.c ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glx_drawable.c ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glx_extension.c ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glx_format.c ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glx_info.c ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glx_pbuffer.c ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glxext.h ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: glitz_glxint.h ---
(This appears to be a binary file; contents omitted.)
- Previous message: [cairo-commit] glitz/src/agl Makefile.am, NONE, 1.1 glitz-agl.h,
NONE, 1.1 glitz-agl.man, NONE, 1.1 glitz-agl.pc.in, NONE,
1.1 glitz_agl_context.c, NONE, 1.1 glitz_agl_drawable.c, NONE,
1.1 glitz_agl_extension.c, NONE, 1.1 glitz_agl_format.c, NONE,
1.1 glitz_agl_info.c, NONE, 1.1 glitz_agl_pbuffer.c, NONE,
1.1 glitz_aglint.h, NONE, 1.1
- Next message: [cairo-commit] glitz/src Makefile.am, 1.7, 1.8 glitz-agl.h, 1.5,
NONE glitz-glx.h, 1.5, NONE glitz.c, 1.29, 1.30 glitz.h, 1.24,
1.25 glitz.pc.in, NONE, 1.1 glitz_agl_context.c, 1.10,
NONE glitz_agl_extension.c, 1.14, NONE glitz_agl_format.c, 1.7,
NONE glitz_agl_info.c, 1.15, NONE glitz_agl_pbuffer.c, 1.6,
NONE glitz_agl_surface.c, 1.21, NONE glitz_aglint.h, 1.14,
NONE glitz_buffer.c, 1.4, 1.5 glitz_compose.c, 1.9,
1.10 glitz_drawable.c, NONE, 1.1 glitz_format.c, 1.8,
1.9 glitz_geometry.c, 1.3, 1.4 glitz_gl.h, 1.12,
1.13 glitz_glx_context.c, 1.17, NONE glitz_glx_extension.c,
1.16, NONE glitz_glx_format.c, 1.11, NONE glitz_glx_info.c,
1.22, NONE glitz_glx_pbuffer.c, 1.5, NONE glitz_glx_surface.c,
1.22, NONE glitz_glxext.h, 1.7, NONE glitz_glxint.h, 1.18,
NONE glitz_operator.c, 1.5, 1.6 glitz_pixel.c, 1.12,
1.13 glitz_program.c, 1.15, 1.16 glitz_rect.c, 1.13,
1.14 glitz_region.c, NONE, 1.1 glitz_surface.c, 1.23,
1.24 glitz_texture.c, 1.15, 1.16 glitz_util.c, 1.10,
1.11 glitzint.h, 1.29, 1.30
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list