~vanvugt/mir/plasma-without-cosine

« back to all changes in this revision

Viewing changes to src/platforms/android/server/server_render_window.cpp

  • Committer: Daniel van Vugt
  • Author(s): Kevin DuBois
  • Date: 2015-03-24 08:58:28 UTC
  • mfrom: (2404.1.2 minor-cleanup)
  • Revision ID: daniel.van.vugt@canonical.com-20150324085828-vrlpjgvyk7zvfu26
android: clean up some now-dead functions on mga::FramebufferBundle

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
mga::ServerRenderWindow::ServerRenderWindow(
38
38
    std::shared_ptr<mga::FramebufferBundle> const& fb_bundle,
 
39
    MirPixelFormat format,
39
40
    std::shared_ptr<InterpreterResourceCache> const& cache)
40
41
    : fb_bundle(fb_bundle),
41
42
      resource_cache(cache),
42
 
      format(mga::to_android_format(fb_bundle->fb_format()))
 
43
      format(mga::to_android_format(format))
43
44
{
44
45
}
45
46