~robertcarr/mir/client-focus-notifications

« back to all changes in this revision

Viewing changes to tests/integration-tests/client/test_client_render.cpp

  • Committer: Robert Carr
  • Date: 2013-08-01 22:01:20 UTC
  • mfrom: (706.2.208 trunk)
  • Revision ID: robert.carr@canonical.com-20130801220120-6m230b3g6x0xflzd
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#include "mir_test_framework/process.h"
20
20
 
21
 
#include "mir/compositor/buffer_properties.h"
 
21
#include "mir/graphics/buffer_properties.h"
22
22
#include "mir/graphics/buffer_initializer.h"
23
23
#include "src/server/graphics/android/android_graphic_buffer_allocator.h"
24
24
 
453
453
 
454
454
        auto initializer = std::make_shared<mg::NullBufferInitializer>();
455
455
        allocator = std::make_shared<mga::AndroidGraphicBufferAllocator> (initializer);
456
 
        mc::BufferProperties properties(size, pf, mc::BufferUsage::hardware);
 
456
        mg::BufferProperties properties(size, pf, mg::BufferUsage::hardware);
457
457
        android_buffer = allocator->alloc_buffer(properties);
458
458
        second_android_buffer = allocator->alloc_buffer(properties);
459
459