diff options
author | Benjamin Otte <otte@redhat.com> | 2010-06-30 18:27:54 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-07-03 02:55:52 +0200 |
commit | a1c4b001a548611b7d77e9280fdb5a82da275830 (patch) | |
tree | 4aecb01e880109466e219f06be2b663499219c10 /build | |
parent | 4c039b1cdfac5b5d6aa0c38f0779213fd14ec7de (diff) |
boilerplate: Add a describe vfunc
This function is supposed to describe the backend in use. The describe
function is optional - and therefore initialized as NULL everywhere.
Note:
It is well known that the xlib backend uses X. What is not known is what
version the server supports or what graphics card it is running on. That
is the information the describe vfunc is supposed to provide.
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile.win32.features-h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/Makefile.win32.features-h b/build/Makefile.win32.features-h index 9d9468cd..9aec98ce 100644 --- a/build/Makefile.win32.features-h +++ b/build/Makefile.win32.features-h @@ -62,6 +62,7 @@ endif ifeq ($(CAIRO_HAS_PNG_FUNCTIONS),1) @echo "#define CAIRO_HAS_PNG_FUNCTIONS 1" >> src/cairo-features.h endif + @echo "#define CAIRO_HAS_GLEW_FUNCTIONS 1" >> src/cairo-features.h ifeq ($(CAIRO_HAS_GL_SURFACE),1) @echo "#define CAIRO_HAS_GL_SURFACE 1" >> src/cairo-features.h endif |