blob: 70f8e6560e43b2d3fea38ddd5683122bf7b9ebb4 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_CAMERA_DRIVERS_CONTROLLER_MEMORY_ALLOCATION_H_
#define SRC_CAMERA_DRIVERS_CONTROLLER_MEMORY_ALLOCATION_H_
#include <fuchsia/sysmem/cpp/fidl.h>
namespace camera {
struct BufferCollection {
fuchsia::sysmem::BufferCollectionPtr ptr;
fuchsia::sysmem::BufferCollectionInfo_2 buffers;
};
class ControllerMemoryAllocator {
public:
explicit ControllerMemoryAllocator(fuchsia::sysmem::AllocatorSyncPtr sysmem_allocator);
// Takes in a set of constraints and allocates memory using sysmem based on those
// constraints.
zx_status_t AllocateSharedMemory(
const std::vector<fuchsia::sysmem::BufferCollectionConstraints>& constraints,
BufferCollection& out_buffer_collection, std::string name) const;
private:
fuchsia::sysmem::AllocatorSyncPtr sysmem_allocator_;
};
} // namespace camera
#endif // SRC_CAMERA_DRIVERS_CONTROLLER_MEMORY_ALLOCATION_H_