compile without Xfixes extension
svn path=/trunk/KDE/kdebase/workspace/; revision=661762
This commit is contained in:
parent
da80cba35c
commit
1768b04b53
4 changed files with 4 additions and 4 deletions
|
@ -73,7 +73,7 @@ void Workspace::setupCompositing()
|
||||||
scene = new SceneBasic( this );
|
scene = new SceneBasic( this );
|
||||||
kDebug( 1212 ) << "X compositing" << endl;
|
kDebug( 1212 ) << "X compositing" << endl;
|
||||||
break;
|
break;
|
||||||
#ifdef HAVE_XRENDER
|
#if defined(HAVE_XRENDER) && defined(HAVE_XFIXES)
|
||||||
case 'X':
|
case 'X':
|
||||||
scene = new SceneXrender( this );
|
scene = new SceneXrender( this );
|
||||||
kDebug( 1212 ) << "XRender compositing" << endl;
|
kDebug( 1212 ) << "XRender compositing" << endl;
|
||||||
|
|
|
@ -552,7 +552,7 @@ void EffectsHandlerImpl::reserveElectricBorderSwitching( bool reserve )
|
||||||
|
|
||||||
unsigned long EffectsHandlerImpl::xrenderBufferPicture()
|
unsigned long EffectsHandlerImpl::xrenderBufferPicture()
|
||||||
{
|
{
|
||||||
#ifdef HAVE_XRENDER
|
#if defined(HAVE_XRENDER) && defined(HAVE_XFIXES)
|
||||||
if( SceneXrender* s = dynamic_cast< SceneXrender* >( scene ))
|
if( SceneXrender* s = dynamic_cast< SceneXrender* >( scene ))
|
||||||
return s->bufferPicture();
|
return s->bufferPicture();
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -29,7 +29,7 @@ License. See the file "COPYING" for the exact licensing terms.
|
||||||
|
|
||||||
#include "scene_xrender.h"
|
#include "scene_xrender.h"
|
||||||
|
|
||||||
#ifdef HAVE_XRENDER
|
#if defined(HAVE_XRENDER) && defined(HAVE_XFIXES)
|
||||||
|
|
||||||
#include "toplevel.h"
|
#include "toplevel.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
|
@ -15,7 +15,7 @@ License. See the file "COPYING" for the exact licensing terms.
|
||||||
|
|
||||||
#include "scene.h"
|
#include "scene.h"
|
||||||
|
|
||||||
#ifdef HAVE_XRENDER
|
#if defined(HAVE_XRENDER) && defined(HAVE_XFIXES)
|
||||||
#include <X11/extensions/Xrender.h>
|
#include <X11/extensions/Xrender.h>
|
||||||
|
|
||||||
namespace KWin
|
namespace KWin
|
||||||
|
|
Loading…
Reference in a new issue