~raof/mir/blowup-eventhub

« back to all changes in this revision

Viewing changes to include/test/mir_test_doubles/mock_display_buffer.h

  • Committer: Tarmac
  • Author(s): Kevin DuBois
  • Date: 2014-01-29 00:49:23 UTC
  • mfrom: (1329.1.42 renderable)
  • Revision ID: tarmac-20140129004923-a52iu4phmbzmv9ot
android: split out HWC layers into their own file and add a mga::CompositionLayer type that depends on the interface mg::Renderable.

Approved by Andreas Pokorny, Alan Griffiths, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    MOCK_METHOD0(release_current, void());
47
47
    MOCK_METHOD0(post_update, void());
48
48
    MOCK_CONST_METHOD0(can_bypass, bool());
49
 
    MOCK_METHOD2(render_and_post_update, void(std::list<graphics::Renderable> const&, 
 
49
    MOCK_METHOD2(render_and_post_update, void(std::list<std::shared_ptr<graphics::Renderable>> const&, 
50
50
                                   std::function<void(graphics::Renderable const&)> const&));
51
51
    MOCK_CONST_METHOD0(orientation, MirOrientation());
52
52
};