~vanvugt/mir/revert-r2288

« back to all changes in this revision

Viewing changes to src/platforms/android/client/android_client_platform.h

client: Add set_gbm_device platform operation.

Approved by PS Jenkins bot, Robert Carr, Alan Griffiths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    AndroidClientPlatform(ClientContext* const context);
36
36
    MirPlatformType platform_type() const override;
37
37
    void populate(MirPlatformPackage& package) const override;
 
38
    MirPlatformMessage* platform_operation(MirPlatformMessage const* request) override;
38
39
    std::shared_ptr<ClientBufferFactory> create_buffer_factory() override;
39
40
    std::shared_ptr<EGLNativeWindowType> create_egl_native_window(EGLNativeSurface *surface) override;
40
41
    std::shared_ptr<EGLNativeDisplayType> create_egl_native_display() override;
42
43
 
43
44
private:
44
45
    ClientContext* const context;
45
 
 
46
46
};
47
47
 
48
48
}