987bc837d9
Due to changes in build system we have always either OpenGL or OpenGL ES. This allows to remove the KWIN_HAVE_OPENGL_COMPOSITING define. In the effects the define is kept as KWIN_HAVE_OPENGL which can be used in future to build also an XRender only effect system.
23 lines
458 B
CMake
23 lines
458 B
CMake
/*
|
|
|
|
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
|
|
|
|
/*
|
|
|
|
These should be primarily used to detect what kind of compositing
|
|
support is available.
|
|
|
|
*/
|
|
|
|
/* KWIN_HAVE_XRENDER_COMPOSITING - whether XRender-based compositing support is available */
|
|
#cmakedefine KWIN_HAVE_XRENDER_COMPOSITING
|
|
|
|
|
|
#endif
|