~ubuntu-branches/ubuntu/vivid/mir/vivid

« back to all changes in this revision

Viewing changes to src/server/graphics/offscreen/display_buffer.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-02-04 14:49:07 UTC
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: package-import@ubuntu.com-20140204144907-o3ruhix0ey26lchl
Tags: upstream-0.1.4+14.04.20140204
ImportĀ upstreamĀ versionĀ 0.1.4+14.04.20140204

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
{
149
149
    return false;
150
150
}
 
151
 
 
152
void mgo::DisplayBuffer::render_and_post_update(
 
153
        std::list<std::shared_ptr<Renderable>> const&,
 
154
        std::function<void(Renderable const&)> const&)
 
155
{
 
156
}
 
157
 
 
158
MirOrientation mgo::DisplayBuffer::orientation() const
 
159
{
 
160
    /*
 
161
     * The display buffer's already constructed with rotated dimensions,
 
162
     * so nothing more to do.
 
163
     */
 
164
    return mir_orientation_normal;
 
165
}