~gerboland/qtubuntu/devicePixelRatio

« back to all changes in this revision

Viewing changes to src/ubuntumirclient/integration.cpp

  • Committer: Gerry Boland
  • Date: 2016-04-11 16:48:24 UTC
  • mfrom: (304.1.9 qtubuntu)
  • Revision ID: gerry.boland@canonical.com-20160411164824-iylqkwplaykfwplb
MergeĀ trunkĀ (untested)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include "input.h"
23
23
#include "logging.h"
24
24
#include "nativeinterface.h"
 
25
#include "offscreensurface.h"
25
26
#include "screen.h"
26
27
#include "theme.h"
27
28
#include "window.h"
255
256
{
256
257
    return mNativeInterface;
257
258
}
 
259
 
 
260
QPlatformOffscreenSurface *UbuntuClientIntegration::createPlatformOffscreenSurface(
 
261
        QOffscreenSurface *surface) const
 
262
{
 
263
    return new UbuntuOffscreenSurface(surface);
 
264
}