mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 22:30:24 +01:00
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33897>
50 lines
1.8 KiB
C
50 lines
1.8 KiB
C
/*
|
|
* Copyright © 2016 Red Hat.
|
|
* Copyright © 2016 Bas Nieuwenhuizen
|
|
*
|
|
* based in part on anv driver which is:
|
|
* Copyright © 2015 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef RADV_BUFFER_H
|
|
#define RADV_BUFFER_H
|
|
|
|
#include "radv_radeon_winsys.h"
|
|
|
|
#include "vk_buffer.h"
|
|
|
|
struct radv_device;
|
|
struct radv_device_memory;
|
|
|
|
struct radv_buffer {
|
|
struct vk_buffer vk;
|
|
|
|
/* Set when bound */
|
|
struct radeon_winsys_bo *bo;
|
|
uint64_t range;
|
|
};
|
|
|
|
VK_DEFINE_NONDISP_HANDLE_CASTS(radv_buffer, vk.base, VkBuffer, VK_OBJECT_TYPE_BUFFER)
|
|
|
|
VkResult radv_create_buffer(struct radv_device *device, const VkBufferCreateInfo *pCreateInfo,
|
|
const VkAllocationCallbacks *pAllocator, VkBuffer *pBuffer, bool is_internal);
|
|
|
|
VkResult radv_bo_create(struct radv_device *device, struct vk_object_base *object, uint64_t size, unsigned alignment,
|
|
enum radeon_bo_domain domain, enum radeon_bo_flag flags, unsigned priority, uint64_t address,
|
|
bool is_internal, struct radeon_winsys_bo **out_bo);
|
|
|
|
VkResult radv_bo_virtual_bind(struct radv_device *device, struct vk_object_base *object,
|
|
struct radeon_winsys_bo *parent, uint64_t offset, uint64_t size,
|
|
struct radeon_winsys_bo *bo, uint64_t bo_offset);
|
|
|
|
void radv_bo_destroy(struct radv_device *device, struct vk_object_base *object, struct radeon_winsys_bo *bo);
|
|
|
|
VkResult radv_bo_from_fd(struct radv_device *device, int fd, unsigned priority, struct radv_device_memory *mem,
|
|
uint64_t *alloc_size);
|
|
|
|
VkResult radv_bo_from_ptr(struct radv_device *device, void *host_ptr, uint64_t alloc_size, unsigned priority,
|
|
struct radv_device_memory *mem);
|
|
|
|
#endif /* RADV_BUFFER_H */
|