~ubuntu-branches/ubuntu/wily/kwin/wily-proposed

« back to all changes in this revision

Viewing changes to effects/lookingglass/lookingglass.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-08-10 23:16:37 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20150810231637-5zb2tstjkez93hml
Tags: 4:5.3.95-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    LookingGlassConfig::self()->read();
91
91
    initialradius = LookingGlassConfig::radius();
92
92
    radius = initialradius;
93
 
    qCDebug(KWINEFFECTS) << QStringLiteral("Radius from config: %1").arg(radius) << endl;
 
93
    qCDebug(KWINEFFECTS) << "Radius from config:" << radius;
94
94
    m_valid = loadData();
95
95
}
96
96
 
125
125
        ShaderBinder binder(m_shader);
126
126
        m_shader->setUniform("u_textureSize", QVector2D(screenSize.width(), screenSize.height()));
127
127
    } else {
128
 
        qCritical() << "The shader failed to load!" << endl;
 
128
        qCCritical(KWINEFFECTS) << "The shader failed to load!";
129
129
        return false;
130
130
    }
131
131