~alan-griffiths/mir/dont-trace-forks

« back to all changes in this revision

Viewing changes to tests/integration-tests/test_server_shutdown.cpp

  • Committer: Tarmac
  • Author(s): Daniel van Vugt
  • Date: 2015-05-18 21:30:28 UTC
  • mfrom: (2456.3.14 consistent-alpha-usage)
  • Revision ID: tarmac-20150518213028-8f4nffe8pc9v7ape
Reduce coupling and simplify: Remove DisplayBuffer::uses_alpha() and
switch back to a trivial colour mask for all targets.

Approved by Kevin DuBois, Alan Griffiths, Alberto Aguirre, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
class StubRendererFactory : public mc::RendererFactory
54
54
{
55
55
public:
56
 
    std::unique_ptr<mc::Renderer> create_renderer_for(geom::Rectangle const&, mc::DestinationAlpha)
 
56
    std::unique_ptr<mc::Renderer> create_renderer_for(geom::Rectangle const&)
57
57
    {
58
58
        return std::unique_ptr<mc::Renderer>(new mtd::StubRenderer());
59
59
    }