blob: b7f0b6549f57bf0442702d941df65da33ece88d4 [file] [log] [blame]
// Copyright 2023 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef IREE_EXPERIMENTAL_METAL_METAL_BUFFER_H_
#define IREE_EXPERIMENTAL_METAL_METAL_BUFFER_H_
#import <Metal/Metal.h>
#include "iree/base/api.h"
#include "iree/hal/api.h"
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
// Wraps a Metal allocation in an iree_hal_buffer_t by retaining |metal_buffer|.
//
// |out_buffer| must be released by the caller (see iree_hal_buffer_release).
iree_status_t iree_hal_metal_buffer_wrap(
#if defined(IREE_PLATFORM_MACOS)
id<MTLCommandQueue> queue,
#endif // IREE_PLATFORM_MACOS
id<MTLBuffer> metal_buffer, iree_hal_allocator_t* allocator,
iree_hal_memory_type_t memory_type, iree_hal_memory_access_t allowed_access,
iree_hal_buffer_usage_t allowed_usage, iree_device_size_t allocation_size,
iree_device_size_t byte_offset, iree_device_size_t byte_length,
iree_hal_buffer_release_callback_t release_callback,
iree_hal_buffer_t** out_buffer);
// Returns the underlying Metal buffer handle for the given |buffer|.
id<MTLBuffer> iree_hal_metal_buffer_handle(const iree_hal_buffer_t* buffer);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // IREE_EXPERIMENTAL_METAL_METAL_BUFFER_H_