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

« back to all changes in this revision

Viewing changes to src/client/client_buffer_factory.h

  • 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:
23
23
#include <memory>
24
24
 
25
25
#include "mir_toolkit/mir_client_library.h"
26
 
#include "mir/geometry/pixel_format.h"
 
26
#include "mir_toolkit/common.h"
27
27
#include "mir/geometry/size.h"
28
28
 
29
29
namespace mir
46
46
     * \param [in] pf the buffer's pixel format
47
47
     */
48
48
    virtual std::shared_ptr<ClientBuffer> create_buffer(std::shared_ptr<MirBufferPackage> const& package,
49
 
                                                        geometry::Size size, geometry::PixelFormat pf) = 0;
 
49
                                                        geometry::Size size, MirPixelFormat pf) = 0;
50
50
 
51
51
protected:
52
52
    ClientBufferFactory() = default;