~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/server/scene/surface_controller.cpp

  • Committer: Package Import Robot
  • Author(s): CI Train Bot
  • Date: 2015-05-12 13:12:55 UTC
  • mto: This revision was merged to the branch mainline in revision 96.
  • Revision ID: package-import@ubuntu.com-20150512131255-y7z12i8n4pbvo70x
Tags: upstream-0.13.0+15.10.20150512
ImportĀ upstreamĀ versionĀ 0.13.0+15.10.20150512

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
{
50
50
    surface_stack->raise(surface);
51
51
}
 
52
 
 
53
void ms::SurfaceController::raise(SurfaceSet const& surfaces)
 
54
{
 
55
    surface_stack->raise(surfaces);
 
56
}
 
57
 
 
58
auto ms::SurfaceController::surface_at(geometry::Point cursor) const
 
59
-> std::shared_ptr<Surface>
 
60
{
 
61
    return surface_stack->surface_at(cursor);
 
62
}