~ubuntu-branches/ubuntu/utopic/mir/utopic-proposed

« back to all changes in this revision

Viewing changes to src/server/compositor/gl_renderer_factory.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-03-10 19:28:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: package-import@ubuntu.com-20140310192846-rq9qm3ec26yrelo2
Tags: upstream-0.1.6+14.04.20140310
ImportĀ upstreamĀ versionĀ 0.1.6+14.04.20140310

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "renderer_factory.h"
23
23
 
24
 
#include <mutex>
25
 
 
26
24
namespace mir
27
25
{
28
26
namespace compositor
32
30
{
33
31
public:
34
32
    std::unique_ptr<Renderer> create_renderer_for(geometry::Rectangle const& rect);
35
 
 
36
 
private:
37
 
    std::mutex renderer_mutex;
38
33
};
39
34
 
40
35
}