~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to tests/unit-tests/graphics/nested/test_nested_platform.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-10-10 14:01:26 UTC
  • mto: This revision was merged to the branch mainline in revision 84.
  • Revision ID: package-import@ubuntu.com-20141010140126-n1czko8na1kuz4ll
Tags: upstream-0.8.0+14.10.20141010
ImportĀ upstreamĀ versionĀ 0.8.0+14.10.20141010

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        return {};
56
56
    }
57
57
 
58
 
    std::shared_ptr<mg::PlatformIPCPackage> get_ipc_package() override
 
58
    std::shared_ptr<mg::PlatformIPCPackage> connection_ipc_package() override
59
59
    {
60
60
        return {};
61
61
    }
64
64
    {
65
65
        return {};
66
66
    }
 
67
    
 
68
    std::shared_ptr<mg::BufferWriter> make_buffer_writer() override
 
69
    {
 
70
        return {};
 
71
    }
67
72
 
68
73
    void fill_buffer_package(
69
 
        mg::BufferIPCPacker*, mg::Buffer const*, mg::BufferIpcMsgType) const override {}
 
74
        mg::BufferIpcMessage*, mg::Buffer const*, mg::BufferIpcMsgType) const override {}
70
75
};
71
76
 
72
77
TEST(NestedGraphicsPlatform, egl_native_display_is_host_connection_native_display)