2007-12-17 14:18:07 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
This file includes config #define's for KWin's libraries
|
|
|
|
that are installed. Installed files and files using them
|
|
|
|
should be using these instead of their own.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KWINCONFIG_H
|
|
|
|
#define KWINCONFIG_H
|
|
|
|
|
|
|
|
#if ${HAVE_OPENGL}
|
|
|
|
#define KWIN_HAVE_OPENGL 1
|
|
|
|
#else
|
|
|
|
#undef KWIN_HAVE_OPENGL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
These should be primarily used to detect what kind of compositing
|
|
|
|
support is available.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* KWIN_HAVE_COMPOSITING - whether any compositing support is available */
|
2008-01-03 15:22:19 +00:00
|
|
|
#cmakedefine KWIN_HAVE_COMPOSITING
|
2007-12-17 14:18:07 +00:00
|
|
|
|
|
|
|
/* KWIN_HAVE_OPENGL_COMPOSITING - whether OpenGL-based compositing support is available */
|
2008-01-03 15:22:19 +00:00
|
|
|
#cmakedefine KWIN_HAVE_OPENGL_COMPOSITING
|
2007-12-17 14:18:07 +00:00
|
|
|
|
|
|
|
/* KWIN_HAVE_XRENDER_COMPOSITING - whether XRender-based compositing support is available */
|
2008-01-03 15:22:19 +00:00
|
|
|
#cmakedefine KWIN_HAVE_XRENDER_COMPOSITING
|
2007-12-17 14:18:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|