~vanvugt/mir/frontend-server

« back to all changes in this revision

Viewing changes to src/server/compositor/rendering_operator.cpp

  • Committer: Daniel van Vugt
  • Date: 2014-04-15 03:51:25 UTC
  • mfrom: (1416.1.134 development-branch)
  • Revision ID: daniel.van.vugt@canonical.com-20140415035125-qvrycnzs1b86qgc7
Merge latest development-branch and fix conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2012 Canonical Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it
5
 
 * under the terms of the GNU General Public License version 3,
6
 
 * as published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
17
 
 */
18
 
 
19
 
#include "rendering_operator.h"
20
 
#include "mir/compositor/buffer_stream.h"
21
 
#include "mir/graphics/renderable.h"
22
 
 
23
 
namespace mc=mir::compositor;
24
 
 
25
 
mc::RenderingOperator::RenderingOperator(
26
 
    Renderer& renderer)
27
 
    : renderer(renderer)
28
 
{
29
 
}
30
 
 
31
 
void mc::RenderingOperator::operator()(graphics::Renderable const& renderable)
32
 
{
33
 
    auto compositor_buffer = renderable.buffer(&renderer);
34
 
    // preserves buffers used in rendering until after post_update()
35
 
    saved_resources.push_back(compositor_buffer);
36
 
    renderer.render(renderable, *compositor_buffer);
37
 
}