mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-28 03:28:10 +02:00
this is now at parity with what we did. this gets rid of all divergence between us and common vk enqueue. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Reviewed-by: Konstantin Seurer <konstantin.seurer@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28682>
95 lines
3.1 KiB
C
95 lines
3.1 KiB
C
/*
|
|
* Copyright © 2019 Red Hat.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "lvp_private.h"
|
|
#include "pipe/p_context.h"
|
|
#include "vk_util.h"
|
|
|
|
#include "vk_common_entrypoints.h"
|
|
|
|
static void
|
|
lvp_cmd_buffer_destroy(struct vk_command_buffer *cmd_buffer)
|
|
{
|
|
vk_command_buffer_finish(cmd_buffer);
|
|
vk_free(&cmd_buffer->pool->alloc, cmd_buffer);
|
|
}
|
|
|
|
static VkResult
|
|
lvp_create_cmd_buffer(struct vk_command_pool *pool,
|
|
VkCommandBufferLevel level,
|
|
struct vk_command_buffer **cmd_buffer_out)
|
|
{
|
|
struct lvp_device *device =
|
|
container_of(pool->base.device, struct lvp_device, vk);
|
|
struct lvp_cmd_buffer *cmd_buffer;
|
|
|
|
cmd_buffer = vk_alloc(&pool->alloc, sizeof(*cmd_buffer), 8,
|
|
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
if (cmd_buffer == NULL)
|
|
return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY);
|
|
|
|
VkResult result = vk_command_buffer_init(pool, &cmd_buffer->vk,
|
|
&lvp_cmd_buffer_ops, level);
|
|
if (result != VK_SUCCESS) {
|
|
vk_free(&pool->alloc, cmd_buffer);
|
|
return result;
|
|
}
|
|
|
|
cmd_buffer->device = device;
|
|
|
|
*cmd_buffer_out = &cmd_buffer->vk;
|
|
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
static void
|
|
lvp_reset_cmd_buffer(struct vk_command_buffer *vk_cmd_buffer,
|
|
UNUSED VkCommandBufferResetFlags flags)
|
|
{
|
|
vk_command_buffer_reset(vk_cmd_buffer);
|
|
}
|
|
|
|
const struct vk_command_buffer_ops lvp_cmd_buffer_ops = {
|
|
.create = lvp_create_cmd_buffer,
|
|
.reset = lvp_reset_cmd_buffer,
|
|
.destroy = lvp_cmd_buffer_destroy,
|
|
};
|
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL lvp_BeginCommandBuffer(
|
|
VkCommandBuffer commandBuffer,
|
|
const VkCommandBufferBeginInfo* pBeginInfo)
|
|
{
|
|
LVP_FROM_HANDLE(lvp_cmd_buffer, cmd_buffer, commandBuffer);
|
|
|
|
vk_command_buffer_begin(&cmd_buffer->vk, pBeginInfo);
|
|
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL lvp_EndCommandBuffer(
|
|
VkCommandBuffer commandBuffer)
|
|
{
|
|
LVP_FROM_HANDLE(lvp_cmd_buffer, cmd_buffer, commandBuffer);
|
|
|
|
return vk_command_buffer_end(&cmd_buffer->vk);
|
|
}
|