~vanvugt/mir/draft-changelog-0.27.0-reboot

« back to all changes in this revision

Viewing changes to src/server/compositor/stream.cpp

  • Committer: Tarmac
  • Author(s): Christopher James Halse Rogers
  • Date: 2017-05-25 19:05:34 UTC
  • mfrom: (4173.1.8 trunk)
  • Revision ID: tarmac-20170525190534-s2v8n1b9034h4t6b
mc::BufferAcquisition: Remove the never-used MultiMonitorMode enum.

We've got code for both versions, but single_monitor_fast has never been used, and is
not exposed to external users.
.

Approved by mir-ci-bot, Alan Griffiths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    schedule_mode(ScheduleMode::Queueing),
42
42
    schedule(std::make_shared<mc::QueueingSchedule>()),
43
43
    buffers(map),
44
 
    arbiter(std::make_shared<mc::MultiMonitorArbiter>(
45
 
        mc::MultiMonitorMode::multi_monitor_sync, buffers, schedule)),
 
44
    arbiter(std::make_shared<mc::MultiMonitorArbiter>(buffers, schedule)),
46
45
    size(size),
47
46
    pf(pf),
48
47
    first_frame_posted(false)