2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-10-23 13:41:59 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org>
|
2010-12-07 20:50:43 +00:00
|
|
|
Copyright (C) 2010 Martin Gräßlin <kde@martin-graesslin.com>
|
2007-10-23 13:41:59 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-10-23 13:41:59 +00:00
|
|
|
|
|
|
|
#include "showpaint.h"
|
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
#include <kwinconfig.h>
|
2007-10-23 13:41:59 +00:00
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2010-12-07 20:50:43 +00:00
|
|
|
#include <kwinglutils.h>
|
2007-10-23 13:41:59 +00:00
|
|
|
#endif
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_XRENDER_COMPOSITING
|
2007-10-23 13:41:59 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/extensions/Xrender.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <qcolor.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
KWIN_EFFECT( showpaint, ShowPaintEffect )
|
|
|
|
|
|
|
|
static QColor colors[] = { Qt::red, Qt::green, Qt::blue, Qt::cyan, Qt::magenta,
|
|
|
|
Qt::yellow, Qt::gray };
|
|
|
|
|
|
|
|
ShowPaintEffect::ShowPaintEffect()
|
|
|
|
: color_index( 0 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-07 20:50:43 +00:00
|
|
|
ShowPaintEffect::~ShowPaintEffect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-23 13:41:59 +00:00
|
|
|
void ShowPaintEffect::paintScreen( int mask, QRegion region, ScreenPaintData& data )
|
|
|
|
{
|
|
|
|
painted = QRegion();
|
|
|
|
effects->paintScreen( mask, region, data );
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2007-10-23 13:41:59 +00:00
|
|
|
if( effects->compositingType() == OpenGLCompositing)
|
|
|
|
paintGL();
|
|
|
|
#endif
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_XRENDER_COMPOSITING
|
2007-10-23 13:41:59 +00:00
|
|
|
if( effects->compositingType() == XRenderCompositing)
|
|
|
|
paintXrender();
|
|
|
|
#endif
|
|
|
|
if( ++color_index == sizeof( colors ) / sizeof( colors[ 0 ] ))
|
|
|
|
color_index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowPaintEffect::paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data )
|
|
|
|
{
|
|
|
|
painted |= region;
|
|
|
|
effects->paintWindow( w, mask, region, data );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowPaintEffect::paintGL()
|
|
|
|
{
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2010-12-07 20:50:43 +00:00
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2007-10-23 13:41:59 +00:00
|
|
|
glPushAttrib( GL_CURRENT_BIT | GL_ENABLE_BIT );
|
2010-12-07 20:50:43 +00:00
|
|
|
#endif
|
2010-12-11 14:53:15 +00:00
|
|
|
GLVertexBuffer *vbo = GLVertexBuffer::streamingBuffer();
|
|
|
|
vbo->reset();
|
|
|
|
vbo->setUseColor(true);
|
2010-12-11 09:28:37 +00:00
|
|
|
if (ShaderManager::instance()->isValid()) {
|
|
|
|
ShaderManager::instance()->pushShader(ShaderManager::ColorShader);
|
2010-12-07 20:50:43 +00:00
|
|
|
}
|
2007-10-23 13:41:59 +00:00
|
|
|
glEnable( GL_BLEND );
|
|
|
|
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
|
2010-12-07 20:50:43 +00:00
|
|
|
QColor color = colors[ color_index ];
|
|
|
|
color.setAlphaF(0.2);
|
|
|
|
vbo->setColor(color);
|
|
|
|
QVector<float> verts;
|
|
|
|
verts.reserve(painted.rects().count()*12);
|
|
|
|
foreach (const QRect &r, painted.rects()) {
|
|
|
|
verts << r.x() + r.width() << r.y();
|
|
|
|
verts << r.x() << r.y();
|
|
|
|
verts << r.x() << r.y() + r.height();
|
|
|
|
verts << r.x() << r.y() + r.height();
|
|
|
|
verts << r.x() + r.width() << r.y() + r.height();
|
|
|
|
verts << r.x() + r.width() << r.y();
|
|
|
|
}
|
|
|
|
vbo->setData(verts.count()/2, 2, verts.data(), NULL);
|
|
|
|
vbo->render(GL_TRIANGLES);
|
2010-12-11 09:28:37 +00:00
|
|
|
if (ShaderManager::instance()->isValid()) {
|
|
|
|
ShaderManager::instance()->popShader();
|
2010-12-07 20:50:43 +00:00
|
|
|
}
|
|
|
|
glDisable( GL_BLEND );
|
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2007-10-23 13:41:59 +00:00
|
|
|
glPopAttrib();
|
2010-12-07 20:50:43 +00:00
|
|
|
#endif
|
2007-10-23 13:41:59 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowPaintEffect::paintXrender()
|
|
|
|
{
|
2007-12-17 14:14:53 +00:00
|
|
|
#ifdef KWIN_HAVE_XRENDER_COMPOSITING
|
2007-10-23 13:41:59 +00:00
|
|
|
XRenderColor col;
|
2008-06-28 11:30:52 +00:00
|
|
|
float alpha = 0.2;
|
2007-10-23 13:41:59 +00:00
|
|
|
const QColor& color = colors[ color_index ];
|
|
|
|
col.alpha = int( alpha * 0xffff );
|
|
|
|
col.red = int( alpha * 0xffff * color.red() / 255 );
|
|
|
|
col.green = int( alpha * 0xffff * color.green() / 255 );
|
|
|
|
col.blue= int( alpha * 0xffff * color.blue() / 255 );
|
2008-10-11 12:38:46 +00:00
|
|
|
foreach( const QRect &r, painted.rects())
|
2007-10-23 13:41:59 +00:00
|
|
|
XRenderFillRectangle( display(), PictOpOver, effects->xrenderBufferPicture(),
|
|
|
|
&col, r.x(), r.y(), r.width(), r.height());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|