~hikiko/mir/mir.unity8-desktop-session

« back to all changes in this revision

Viewing changes to src/client/gbm/gbm_client_buffer_factory.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Daniel van Vugt, Ubuntu daily release
  • Date: 2014-01-08 02:04:38 UTC
  • mfrom: (1.1.54)
  • Revision ID: package-import@ubuntu.com-20140108020438-ikbu7qqm9v2l026y
Tags: 0.1.3+14.04.20140108-0ubuntu1
[ Daniel van Vugt ]
* Preparing for release 0.1.3

[ Ubuntu daily release ]
* Automatic snapshot from revision 1170

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2013 Canonical Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify
5
 
 * it under the terms of the GNU Lesser General Public License version 3 as
6
 
 * 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 Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authored by:
17
 
 *   Christopher James Halse Rogers <christopher.halse.rogers@canonical.com>
18
 
 */
19
 
 
20
 
#include "gbm_client_buffer_factory.h"
21
 
#include "gbm_client_buffer.h"
22
 
 
23
 
namespace mcl=mir::client;
24
 
namespace mclg=mir::client::gbm;
25
 
 
26
 
mclg::GBMClientBufferFactory::GBMClientBufferFactory(
27
 
        std::shared_ptr<DRMFDHandler> const& drm_fd_handler)
28
 
    : drm_fd_handler{drm_fd_handler}
29
 
{
30
 
}
31
 
 
32
 
std::shared_ptr<mcl::ClientBuffer> mclg::GBMClientBufferFactory::create_buffer(std::shared_ptr<MirBufferPackage> const& package, geometry::Size size, geometry::PixelFormat pf)
33
 
{
34
 
    (void)size; // TODO: remove this unused parameter
35
 
    return std::make_shared<mclg::GBMClientBuffer>(
36
 
        drm_fd_handler,
37
 
        package,
38
 
        geometry::Size{package->width, package->height},
39
 
        pf);
40
 
}