2015-07-15 12:09:52 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2015 Intel Corporation
|
|
|
|
*
|
|
|
|
* 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 <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2015-07-17 15:04:27 -07:00
|
|
|
#include "anv_private.h"
|
2015-07-15 12:09:52 -07:00
|
|
|
|
|
|
|
/** \file anv_cmd_buffer.c
|
|
|
|
*
|
2015-07-30 14:59:02 -07:00
|
|
|
* This file contains all of the stuff for emitting commands into a command
|
|
|
|
* buffer. This includes implementations of most of the vkCmd*
|
|
|
|
* entrypoints. This file is concerned entirely with state emission and
|
|
|
|
* not with the command buffer data structure itself. As far as this file
|
|
|
|
* is concerned, most of anv_cmd_buffer is magic.
|
2015-07-15 12:09:52 -07:00
|
|
|
*/
|
|
|
|
|
2015-10-07 09:31:53 -07:00
|
|
|
/* TODO: These are taken from GLES. We should check the Vulkan spec */
|
|
|
|
const struct anv_dynamic_state default_dynamic_state = {
|
|
|
|
.viewport = {
|
|
|
|
.count = 0,
|
|
|
|
},
|
|
|
|
.scissor = {
|
|
|
|
.count = 0,
|
|
|
|
},
|
|
|
|
.line_width = 1.0f,
|
|
|
|
.depth_bias = {
|
|
|
|
.bias = 0.0f,
|
|
|
|
.clamp = 0.0f,
|
|
|
|
.slope_scaled = 0.0f,
|
|
|
|
},
|
|
|
|
.blend_constants = { 0.0f, 0.0f, 0.0f, 0.0f },
|
|
|
|
.depth_bounds = {
|
|
|
|
.min = 0.0f,
|
|
|
|
.max = 1.0f,
|
|
|
|
},
|
|
|
|
.stencil_compare_mask = {
|
|
|
|
.front = ~0u,
|
|
|
|
.back = ~0u,
|
|
|
|
},
|
|
|
|
.stencil_write_mask = {
|
|
|
|
.front = ~0u,
|
|
|
|
.back = ~0u,
|
|
|
|
},
|
|
|
|
.stencil_reference = {
|
|
|
|
.front = 0u,
|
|
|
|
.back = 0u,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
anv_dynamic_state_copy(struct anv_dynamic_state *dest,
|
|
|
|
const struct anv_dynamic_state *src,
|
|
|
|
uint32_t copy_mask)
|
|
|
|
{
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_VIEWPORT)) {
|
|
|
|
dest->viewport.count = src->viewport.count;
|
|
|
|
typed_memcpy(dest->viewport.viewports, src->viewport.viewports,
|
|
|
|
src->viewport.count);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_SCISSOR)) {
|
|
|
|
dest->scissor.count = src->scissor.count;
|
|
|
|
typed_memcpy(dest->scissor.scissors, src->scissor.scissors,
|
|
|
|
src->scissor.count);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_LINE_WIDTH))
|
|
|
|
dest->line_width = src->line_width;
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_DEPTH_BIAS))
|
|
|
|
dest->depth_bias = src->depth_bias;
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_BLEND_CONSTANTS))
|
|
|
|
typed_memcpy(dest->blend_constants, src->blend_constants, 4);
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_DEPTH_BOUNDS))
|
|
|
|
dest->depth_bounds = src->depth_bounds;
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK))
|
|
|
|
dest->stencil_compare_mask = src->stencil_compare_mask;
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_STENCIL_WRITE_MASK))
|
|
|
|
dest->stencil_write_mask = src->stencil_write_mask;
|
|
|
|
|
|
|
|
if (copy_mask & (1 << VK_DYNAMIC_STATE_STENCIL_REFERENCE))
|
|
|
|
dest->stencil_reference = src->stencil_reference;
|
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
static void
|
|
|
|
anv_cmd_state_init(struct anv_cmd_state *state)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
memset(&state->descriptors, 0, sizeof(state->descriptors));
|
2015-08-26 15:01:38 -07:00
|
|
|
memset(&state->push_constants, 0, sizeof(state->push_constants));
|
2015-07-30 14:59:02 -07:00
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
state->dirty = ~0;
|
2015-07-30 14:59:02 -07:00
|
|
|
state->vb_dirty = 0;
|
|
|
|
state->descriptors_dirty = 0;
|
2015-08-26 15:01:38 -07:00
|
|
|
state->push_constants_dirty = 0;
|
2015-07-30 14:59:02 -07:00
|
|
|
state->pipeline = NULL;
|
2015-11-16 16:29:33 -08:00
|
|
|
state->restart_index = UINT32_MAX;
|
2015-10-06 17:21:44 -07:00
|
|
|
state->dynamic = default_dynamic_state;
|
2015-08-20 22:59:19 -07:00
|
|
|
|
|
|
|
state->gen7.index_buffer = NULL;
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-09-11 10:25:21 -07:00
|
|
|
static VkResult
|
|
|
|
anv_cmd_buffer_ensure_push_constants_size(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
VkShaderStage stage, uint32_t size)
|
|
|
|
{
|
|
|
|
struct anv_push_constants **ptr = &cmd_buffer->state.push_constants[stage];
|
|
|
|
|
|
|
|
if (*ptr == NULL) {
|
|
|
|
*ptr = anv_device_alloc(cmd_buffer->device, size, 8,
|
|
|
|
VK_SYSTEM_ALLOC_TYPE_INTERNAL);
|
|
|
|
if (*ptr == NULL)
|
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
|
|
|
(*ptr)->size = size;
|
|
|
|
} else if ((*ptr)->size < size) {
|
|
|
|
void *new_data = anv_device_alloc(cmd_buffer->device, size, 8,
|
|
|
|
VK_SYSTEM_ALLOC_TYPE_INTERNAL);
|
|
|
|
if (new_data == NULL)
|
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
|
|
|
|
|
|
|
memcpy(new_data, *ptr, (*ptr)->size);
|
|
|
|
anv_device_free(cmd_buffer->device, *ptr);
|
|
|
|
|
|
|
|
*ptr = new_data;
|
|
|
|
(*ptr)->size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define anv_cmd_buffer_ensure_push_constant_field(cmd_buffer, stage, field) \
|
|
|
|
anv_cmd_buffer_ensure_push_constants_size(cmd_buffer, stage, \
|
|
|
|
(offsetof(struct anv_push_constants, field) + \
|
|
|
|
sizeof(cmd_buffer->state.push_constants[0]->field)))
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_CreateCommandBuffer(
|
|
|
|
VkDevice _device,
|
2015-11-30 11:48:08 -08:00
|
|
|
const VkCommandBufferCreateInfo* pCreateInfo,
|
|
|
|
VkCommandBuffer* pCommandBuffer)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_pool, pool, pCreateInfo->commandPool);
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_cmd_buffer *cmd_buffer;
|
|
|
|
VkResult result;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer = anv_device_alloc(device, sizeof(*cmd_buffer), 8,
|
|
|
|
VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
|
|
|
|
if (cmd_buffer == NULL)
|
2015-07-15 12:09:52 -07:00
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
|
|
|
|
2015-09-24 13:51:40 -07:00
|
|
|
cmd_buffer->_loader_data.loaderMagic = ICD_LOADER_MAGIC;
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->device = device;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
result = anv_cmd_buffer_init_batch_bo_chain(cmd_buffer);
|
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
goto fail;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_state_stream_init(&cmd_buffer->surface_state_stream,
|
|
|
|
&device->surface_state_block_pool);
|
|
|
|
anv_state_stream_init(&cmd_buffer->dynamic_state_stream,
|
|
|
|
&device->dynamic_state_block_pool);
|
|
|
|
|
|
|
|
cmd_buffer->level = pCreateInfo->level;
|
|
|
|
cmd_buffer->opt_flags = 0;
|
|
|
|
|
|
|
|
anv_cmd_state_init(&cmd_buffer->state);
|
|
|
|
|
2015-08-04 14:00:09 -07:00
|
|
|
if (pool) {
|
|
|
|
list_addtail(&cmd_buffer->pool_link, &pool->cmd_buffers);
|
|
|
|
} else {
|
|
|
|
/* Init the pool_link so we can safefly call list_del when we destroy
|
|
|
|
* the command buffer
|
|
|
|
*/
|
|
|
|
list_inithead(&cmd_buffer->pool_link);
|
|
|
|
}
|
2015-07-30 14:59:02 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
*pCommandBuffer = anv_cmd_buffer_to_handle(cmd_buffer);
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-15 12:09:52 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-30 14:59:02 -07:00
|
|
|
|
|
|
|
fail: anv_device_free(device, cmd_buffer);
|
|
|
|
|
|
|
|
return result;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-10-05 20:50:51 -07:00
|
|
|
void anv_DestroyCommandBuffer(
|
2015-07-30 14:59:02 -07:00
|
|
|
VkDevice _device,
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer _cmd_buffer)
|
2015-07-29 14:05:06 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, _cmd_buffer);
|
|
|
|
|
|
|
|
list_del(&cmd_buffer->pool_link);
|
|
|
|
|
|
|
|
anv_cmd_buffer_fini_batch_bo_chain(cmd_buffer);
|
|
|
|
|
|
|
|
anv_state_stream_finish(&cmd_buffer->surface_state_stream);
|
|
|
|
anv_state_stream_finish(&cmd_buffer->dynamic_state_stream);
|
|
|
|
anv_device_free(device, cmd_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
VkResult anv_ResetCommandBuffer(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
|
|
|
VkCommandBufferResetFlags flags)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-30 14:59:02 -07:00
|
|
|
|
|
|
|
anv_cmd_buffer_reset_batch_bo_chain(cmd_buffer);
|
|
|
|
|
|
|
|
anv_cmd_state_init(&cmd_buffer->state);
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-29 14:05:06 -07:00
|
|
|
}
|
|
|
|
|
2015-07-15 12:09:52 -07:00
|
|
|
void
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_emit_state_base_address(struct anv_cmd_buffer *cmd_buffer)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-08-14 14:50:11 -07:00
|
|
|
switch (cmd_buffer->device->info.gen) {
|
2015-08-20 22:59:19 -07:00
|
|
|
case 7:
|
2015-11-18 12:25:11 -08:00
|
|
|
if (cmd_buffer->device->info.is_haswell)
|
|
|
|
return gen7_cmd_buffer_emit_state_base_address(cmd_buffer);
|
|
|
|
else
|
|
|
|
return gen7_cmd_buffer_emit_state_base_address(cmd_buffer);
|
2015-08-14 14:50:11 -07:00
|
|
|
case 8:
|
|
|
|
return gen8_cmd_buffer_emit_state_base_address(cmd_buffer);
|
2015-11-25 22:27:01 -08:00
|
|
|
case 9:
|
|
|
|
return gen9_cmd_buffer_emit_state_base_address(cmd_buffer);
|
2015-08-14 14:50:11 -07:00
|
|
|
default:
|
|
|
|
unreachable("unsupported gen\n");
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_BeginCommandBuffer(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
|
|
|
const VkCommandBufferBeginInfo* pBeginInfo)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-15 18:28:00 -07:00
|
|
|
anv_cmd_buffer_reset_batch_bo_chain(cmd_buffer);
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->opt_flags = pBeginInfo->flags;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
if (cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_SECONDARY) {
|
2015-07-30 14:59:02 -07:00
|
|
|
cmd_buffer->state.framebuffer =
|
|
|
|
anv_framebuffer_from_handle(pBeginInfo->framebuffer);
|
|
|
|
cmd_buffer->state.pass =
|
|
|
|
anv_render_pass_from_handle(pBeginInfo->renderPass);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-05 20:30:53 -07:00
|
|
|
struct anv_subpass *subpass =
|
|
|
|
&cmd_buffer->state.pass->subpasses[pBeginInfo->subpass];
|
|
|
|
|
|
|
|
anv_cmd_buffer_begin_subpass(cmd_buffer, subpass);
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_emit_state_base_address(cmd_buffer);
|
|
|
|
cmd_buffer->state.current_pipeline = UINT32_MAX;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_EndCommandBuffer(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_device *device = cmd_buffer->device;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_end_batch_buffer(cmd_buffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
if (cmd_buffer->level == VK_COMMAND_BUFFER_LEVEL_PRIMARY) {
|
2015-07-30 14:59:02 -07:00
|
|
|
/* The algorithm used to compute the validate list is not threadsafe as
|
|
|
|
* it uses the bo->index field. We have to lock the device around it.
|
|
|
|
* Fortunately, the chances for contention here are probably very low.
|
|
|
|
*/
|
|
|
|
pthread_mutex_lock(&device->mutex);
|
|
|
|
anv_cmd_buffer_prepare_execbuf(cmd_buffer);
|
|
|
|
pthread_mutex_unlock(&device->mutex);
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindPipeline(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
VkPipelineBindPoint pipelineBindPoint,
|
|
|
|
VkPipeline _pipeline)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_pipeline, pipeline, _pipeline);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
switch (pipelineBindPoint) {
|
|
|
|
case VK_PIPELINE_BIND_POINT_COMPUTE:
|
|
|
|
cmd_buffer->state.compute_pipeline = pipeline;
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.compute_dirty |= ANV_CMD_DIRTY_PIPELINE;
|
2015-08-26 15:01:38 -07:00
|
|
|
cmd_buffer->state.push_constants_dirty |= VK_SHADER_STAGE_COMPUTE_BIT;
|
2015-07-30 14:59:02 -07:00
|
|
|
break;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
case VK_PIPELINE_BIND_POINT_GRAPHICS:
|
|
|
|
cmd_buffer->state.pipeline = pipeline;
|
|
|
|
cmd_buffer->state.vb_dirty |= pipeline->vb_used;
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_PIPELINE;
|
2015-08-26 15:01:38 -07:00
|
|
|
cmd_buffer->state.push_constants_dirty |= pipeline->active_stages;
|
2015-10-07 09:28:21 -07:00
|
|
|
|
|
|
|
/* Apply the dynamic state from the pipeline */
|
|
|
|
cmd_buffer->state.dirty |= pipeline->dynamic_state_mask;
|
|
|
|
anv_dynamic_state_copy(&cmd_buffer->state.dynamic,
|
|
|
|
&pipeline->dynamic_state,
|
|
|
|
pipeline->dynamic_state_mask);
|
2015-07-30 14:59:02 -07:00
|
|
|
break;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
default:
|
|
|
|
assert(!"invalid bind point");
|
|
|
|
break;
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
void anv_CmdSetViewport(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
uint32_t viewportCount,
|
|
|
|
const VkViewport* pViewports)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
cmd_buffer->state.dynamic.viewport.count = viewportCount;
|
|
|
|
memcpy(cmd_buffer->state.dynamic.viewport.viewports,
|
|
|
|
pViewports, viewportCount * sizeof(*pViewports));
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_VIEWPORT;
|
2015-10-06 17:21:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void anv_CmdSetScissor(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
uint32_t scissorCount,
|
|
|
|
const VkRect2D* pScissors)
|
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-10-06 17:21:44 -07:00
|
|
|
|
|
|
|
cmd_buffer->state.dynamic.scissor.count = scissorCount;
|
|
|
|
memcpy(cmd_buffer->state.dynamic.scissor.scissors,
|
|
|
|
pScissors, scissorCount * sizeof(*pScissors));
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_SCISSOR;
|
2015-10-06 17:21:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void anv_CmdSetLineWidth(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
float lineWidth)
|
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-10-06 17:21:44 -07:00
|
|
|
|
|
|
|
cmd_buffer->state.dynamic.line_width = lineWidth;
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_LINE_WIDTH;
|
2015-10-06 17:21:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void anv_CmdSetDepthBias(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
float depthBias,
|
|
|
|
float depthBiasClamp,
|
|
|
|
float slopeScaledDepthBias)
|
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-10-06 17:21:44 -07:00
|
|
|
|
|
|
|
cmd_buffer->state.dynamic.depth_bias.bias = depthBias;
|
|
|
|
cmd_buffer->state.dynamic.depth_bias.clamp = depthBiasClamp;
|
|
|
|
cmd_buffer->state.dynamic.depth_bias.slope_scaled = slopeScaledDepthBias;
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS;
|
2015-10-06 17:21:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void anv_CmdSetBlendConstants(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
const float blendConst[4])
|
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-10-06 17:21:44 -07:00
|
|
|
|
|
|
|
memcpy(cmd_buffer->state.dynamic.blend_constants,
|
|
|
|
blendConst, sizeof(float) * 4);
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_BLEND_CONSTANTS;
|
2015-10-06 17:21:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void anv_CmdSetDepthBounds(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
float minDepthBounds,
|
|
|
|
float maxDepthBounds)
|
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-10-06 17:21:44 -07:00
|
|
|
|
|
|
|
cmd_buffer->state.dynamic.depth_bounds.min = minDepthBounds;
|
|
|
|
cmd_buffer->state.dynamic.depth_bounds.max = maxDepthBounds;
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_DEPTH_BOUNDS;
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
void anv_CmdSetStencilCompareMask(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
VkStencilFaceFlags faceMask,
|
|
|
|
uint32_t stencilCompareMask)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
if (faceMask & VK_STENCIL_FACE_FRONT_BIT)
|
|
|
|
cmd_buffer->state.dynamic.stencil_compare_mask.front = stencilCompareMask;
|
|
|
|
if (faceMask & VK_STENCIL_FACE_BACK_BIT)
|
|
|
|
cmd_buffer->state.dynamic.stencil_compare_mask.back = stencilCompareMask;
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_STENCIL_COMPARE_MASK;
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
void anv_CmdSetStencilWriteMask(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
VkStencilFaceFlags faceMask,
|
|
|
|
uint32_t stencilWriteMask)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
if (faceMask & VK_STENCIL_FACE_FRONT_BIT)
|
|
|
|
cmd_buffer->state.dynamic.stencil_write_mask.front = stencilWriteMask;
|
|
|
|
if (faceMask & VK_STENCIL_FACE_BACK_BIT)
|
|
|
|
cmd_buffer->state.dynamic.stencil_write_mask.back = stencilWriteMask;
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_STENCIL_WRITE_MASK;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
void anv_CmdSetStencilReference(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-10-06 17:21:44 -07:00
|
|
|
VkStencilFaceFlags faceMask,
|
|
|
|
uint32_t stencilReference)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-30 14:59:02 -07:00
|
|
|
|
2015-10-06 17:21:44 -07:00
|
|
|
if (faceMask & VK_STENCIL_FACE_FRONT_BIT)
|
|
|
|
cmd_buffer->state.dynamic.stencil_reference.front = stencilReference;
|
|
|
|
if (faceMask & VK_STENCIL_FACE_BACK_BIT)
|
|
|
|
cmd_buffer->state.dynamic.stencil_reference.back = stencilReference;
|
|
|
|
|
2015-10-16 20:03:46 -07:00
|
|
|
cmd_buffer->state.dirty |= ANV_CMD_DIRTY_DYNAMIC_STENCIL_REFERENCE;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindDescriptorSets(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
VkPipelineBindPoint pipelineBindPoint,
|
|
|
|
VkPipelineLayout _layout,
|
|
|
|
uint32_t firstSet,
|
|
|
|
uint32_t setCount,
|
|
|
|
const VkDescriptorSet* pDescriptorSets,
|
|
|
|
uint32_t dynamicOffsetCount,
|
|
|
|
const uint32_t* pDynamicOffsets)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_pipeline_layout, layout, _layout);
|
|
|
|
struct anv_descriptor_set_layout *set_layout;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(firstSet + setCount < MAX_SETS);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
uint32_t dynamic_slot = 0;
|
|
|
|
for (uint32_t i = 0; i < setCount; i++) {
|
|
|
|
ANV_FROM_HANDLE(anv_descriptor_set, set, pDescriptorSets[i]);
|
|
|
|
set_layout = layout->set[firstSet + i].layout;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-10-14 19:00:17 -07:00
|
|
|
if (cmd_buffer->state.descriptors[firstSet + i] != set) {
|
|
|
|
cmd_buffer->state.descriptors[firstSet + i] = set;
|
2015-09-11 15:56:19 -07:00
|
|
|
cmd_buffer->state.descriptors_dirty |= set_layout->shader_stages;
|
|
|
|
}
|
|
|
|
|
2015-10-14 15:18:49 -07:00
|
|
|
if (set_layout->dynamic_offset_count > 0) {
|
2015-10-05 08:52:42 -07:00
|
|
|
VkShaderStage s;
|
2015-09-11 15:56:19 -07:00
|
|
|
for_each_bit(s, set_layout->shader_stages) {
|
2015-11-06 13:32:52 -08:00
|
|
|
anv_cmd_buffer_ensure_push_constant_field(cmd_buffer, s, dynamic);
|
|
|
|
|
|
|
|
struct anv_push_constants *push =
|
|
|
|
cmd_buffer->state.push_constants[s];
|
|
|
|
|
|
|
|
unsigned d = layout->set[firstSet + i].dynamic_offset_start;
|
|
|
|
const uint32_t *offsets = pDynamicOffsets + dynamic_slot;
|
|
|
|
struct anv_descriptor *desc = set->descriptors;
|
|
|
|
|
|
|
|
for (unsigned b = 0; b < set_layout->binding_count; b++) {
|
|
|
|
if (set_layout->binding[b].dynamic_offset_index < 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
unsigned array_size = set_layout->binding[b].array_size;
|
|
|
|
for (unsigned j = 0; j < array_size; j++) {
|
|
|
|
push->dynamic[d].offset = *(offsets++);
|
|
|
|
push->dynamic[d].range = (desc++)->range;
|
|
|
|
d++;
|
|
|
|
}
|
|
|
|
}
|
2015-09-11 15:56:19 -07:00
|
|
|
}
|
|
|
|
cmd_buffer->state.push_constants_dirty |= set_layout->shader_stages;
|
|
|
|
}
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdBindVertexBuffers(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
uint32_t startBinding,
|
|
|
|
uint32_t bindingCount,
|
|
|
|
const VkBuffer* pBuffers,
|
|
|
|
const VkDeviceSize* pOffsets)
|
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_vertex_binding *vb = cmd_buffer->state.vertex_bindings;
|
2015-07-29 11:57:44 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* We have to defer setting up vertex buffer since we need the buffer
|
|
|
|
* stride from the pipeline. */
|
2015-07-29 11:57:44 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
assert(startBinding + bindingCount < MAX_VBS);
|
|
|
|
for (uint32_t i = 0; i < bindingCount; i++) {
|
|
|
|
vb[startBinding + i].buffer = anv_buffer_from_handle(pBuffers[i]);
|
|
|
|
vb[startBinding + i].offset = pOffsets[i];
|
|
|
|
cmd_buffer->state.vb_dirty |= 1 << (startBinding + i);
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-08-19 14:56:12 -07:00
|
|
|
static void
|
|
|
|
add_surface_state_reloc(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
struct anv_state state, struct anv_bo *bo, uint32_t offset)
|
|
|
|
{
|
2015-08-20 22:59:19 -07:00
|
|
|
/* The address goes in SURFACE_STATE dword 1 for gens < 8 and dwords 8 and
|
|
|
|
* 9 for gen8+. We only write the first dword for gen8+ here and rely on
|
|
|
|
* the initial state to set the high bits to 0. */
|
|
|
|
|
|
|
|
const uint32_t dword = cmd_buffer->device->info.gen < 8 ? 1 : 8;
|
2015-08-19 14:56:12 -07:00
|
|
|
|
2015-09-28 12:40:17 -07:00
|
|
|
anv_reloc_list_add(&cmd_buffer->surface_relocs, cmd_buffer->device,
|
|
|
|
state.offset + dword * 4, bo, offset);
|
2015-08-19 14:56:12 -07:00
|
|
|
}
|
|
|
|
|
2015-11-06 15:14:10 -08:00
|
|
|
static void
|
|
|
|
fill_descriptor_buffer_surface_state(struct anv_device *device, void *state,
|
|
|
|
VkShaderStage stage, VkDescriptorType type,
|
|
|
|
uint32_t offset, uint32_t range)
|
|
|
|
{
|
|
|
|
VkFormat format;
|
|
|
|
uint32_t stride;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
|
|
|
|
if (anv_is_scalar_shader_stage(device->instance->physicalDevice.compiler,
|
|
|
|
stage)) {
|
|
|
|
stride = 4;
|
|
|
|
} else {
|
|
|
|
stride = 16;
|
|
|
|
}
|
|
|
|
format = VK_FORMAT_R32G32B32A32_SFLOAT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
|
|
|
|
stride = 1;
|
|
|
|
format = VK_FORMAT_UNDEFINED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
unreachable("Invalid descriptor type");
|
|
|
|
}
|
|
|
|
|
|
|
|
anv_fill_buffer_surface_state(device, state,
|
|
|
|
anv_format_for_vk_format(format),
|
|
|
|
offset, range, stride);
|
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
VkResult
|
|
|
|
anv_cmd_buffer_emit_binding_table(struct anv_cmd_buffer *cmd_buffer,
|
2015-10-05 08:52:42 -07:00
|
|
|
VkShaderStage stage, struct anv_state *bt_state)
|
2015-07-29 14:05:06 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_framebuffer *fb = cmd_buffer->state.framebuffer;
|
|
|
|
struct anv_subpass *subpass = cmd_buffer->state.subpass;
|
|
|
|
struct anv_pipeline_layout *layout;
|
2015-11-03 13:42:28 -08:00
|
|
|
uint32_t color_count, bias, state_offset;
|
2015-07-30 14:59:02 -07:00
|
|
|
|
|
|
|
if (stage == VK_SHADER_STAGE_COMPUTE)
|
|
|
|
layout = cmd_buffer->state.compute_pipeline->layout;
|
|
|
|
else
|
|
|
|
layout = cmd_buffer->state.pipeline->layout;
|
|
|
|
|
|
|
|
if (stage == VK_SHADER_STAGE_FRAGMENT) {
|
|
|
|
bias = MAX_RTS;
|
2015-11-03 13:42:28 -08:00
|
|
|
color_count = subpass->color_count;
|
2015-07-30 14:59:02 -07:00
|
|
|
} else {
|
|
|
|
bias = 0;
|
2015-11-03 13:42:28 -08:00
|
|
|
color_count = 0;
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
/* This is a little awkward: layout can be NULL but we still have to
|
|
|
|
* allocate and set a binding table for the PS stage for render
|
|
|
|
* targets. */
|
|
|
|
uint32_t surface_count = layout ? layout->stage[stage].surface_count : 0;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-11-03 13:42:28 -08:00
|
|
|
if (color_count + surface_count == 0)
|
2015-07-30 14:59:02 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-09-21 17:05:51 -07:00
|
|
|
*bt_state = anv_cmd_buffer_alloc_binding_table(cmd_buffer,
|
2015-09-28 12:40:17 -07:00
|
|
|
bias + surface_count,
|
|
|
|
&state_offset);
|
2015-07-30 14:59:02 -07:00
|
|
|
uint32_t *bt_map = bt_state->map;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
if (bt_state->map == NULL)
|
|
|
|
return VK_ERROR_OUT_OF_DEVICE_MEMORY;
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-11-03 13:42:28 -08:00
|
|
|
for (uint32_t a = 0; a < color_count; a++) {
|
2015-10-06 11:42:43 -07:00
|
|
|
const struct anv_image_view *iview =
|
2015-07-30 14:59:02 -07:00
|
|
|
fb->attachments[subpass->color_attachments[a]];
|
2015-07-29 14:05:06 -07:00
|
|
|
|
2015-10-06 19:11:58 -07:00
|
|
|
bt_map[a] = iview->color_rt_surface_state.offset + state_offset;
|
|
|
|
add_surface_state_reloc(cmd_buffer, iview->color_rt_surface_state,
|
2015-10-05 16:24:53 -07:00
|
|
|
iview->bo, iview->offset);
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (layout == NULL)
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
2015-10-14 15:18:49 -07:00
|
|
|
for (uint32_t s = 0; s < layout->stage[stage].surface_count; s++) {
|
|
|
|
struct anv_pipeline_binding *binding =
|
|
|
|
&layout->stage[stage].surface_to_descriptor[s];
|
|
|
|
struct anv_descriptor_set *set =
|
2015-10-14 19:00:17 -07:00
|
|
|
cmd_buffer->state.descriptors[binding->set];
|
2015-10-14 15:18:49 -07:00
|
|
|
struct anv_descriptor *desc = &set->descriptors[binding->offset];
|
|
|
|
|
2015-11-04 19:48:59 -08:00
|
|
|
struct anv_state surface_state;
|
2015-10-14 15:18:49 -07:00
|
|
|
struct anv_bo *bo;
|
|
|
|
uint32_t bo_offset;
|
|
|
|
|
|
|
|
switch (desc->type) {
|
2015-11-06 14:09:52 -08:00
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLER:
|
2015-10-15 15:17:27 -07:00
|
|
|
/* Nothing for us to do here */
|
2015-10-14 15:18:49 -07:00
|
|
|
continue;
|
2015-11-06 14:09:52 -08:00
|
|
|
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC: {
|
2015-11-04 19:51:46 -08:00
|
|
|
bo = desc->buffer->bo;
|
|
|
|
bo_offset = desc->buffer->offset + desc->offset;
|
|
|
|
|
2015-11-04 19:48:59 -08:00
|
|
|
surface_state =
|
2015-10-15 13:45:53 -07:00
|
|
|
anv_cmd_buffer_alloc_surface_state(cmd_buffer);
|
2015-11-06 15:14:10 -08:00
|
|
|
|
|
|
|
fill_descriptor_buffer_surface_state(cmd_buffer->device,
|
|
|
|
surface_state.map,
|
|
|
|
stage, desc->type,
|
|
|
|
bo_offset, desc->range);
|
2015-10-15 13:45:53 -07:00
|
|
|
break;
|
|
|
|
}
|
2015-11-06 14:09:52 -08:00
|
|
|
|
|
|
|
case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
|
2015-11-04 19:48:59 -08:00
|
|
|
surface_state = desc->image_view->nonrt_surface_state;
|
2015-10-14 15:18:49 -07:00
|
|
|
bo = desc->image_view->bo;
|
|
|
|
bo_offset = desc->image_view->offset;
|
|
|
|
break;
|
2015-11-06 14:09:52 -08:00
|
|
|
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
|
|
|
|
assert(!"Unsupported descriptor type");
|
|
|
|
break;
|
2015-11-14 09:16:53 -08:00
|
|
|
|
|
|
|
default:
|
|
|
|
assert(!"Invalid descriptor type");
|
|
|
|
continue;
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-10-14 15:18:49 -07:00
|
|
|
|
2015-11-04 19:48:59 -08:00
|
|
|
bt_map[bias + s] = surface_state.offset + state_offset;
|
|
|
|
add_surface_state_reloc(cmd_buffer, surface_state, bo, bo_offset);
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
VkResult
|
|
|
|
anv_cmd_buffer_emit_samplers(struct anv_cmd_buffer *cmd_buffer,
|
2015-10-05 08:52:42 -07:00
|
|
|
VkShaderStage stage, struct anv_state *state)
|
2015-07-30 11:36:48 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_pipeline_layout *layout;
|
|
|
|
uint32_t sampler_count;
|
|
|
|
|
|
|
|
if (stage == VK_SHADER_STAGE_COMPUTE)
|
|
|
|
layout = cmd_buffer->state.compute_pipeline->layout;
|
|
|
|
else
|
|
|
|
layout = cmd_buffer->state.pipeline->layout;
|
|
|
|
|
|
|
|
sampler_count = layout ? layout->stage[stage].sampler_count : 0;
|
|
|
|
if (sampler_count == 0)
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
|
|
|
uint32_t size = sampler_count * 16;
|
|
|
|
*state = anv_cmd_buffer_alloc_dynamic_state(cmd_buffer, size, 32);
|
|
|
|
|
|
|
|
if (state->map == NULL)
|
|
|
|
return VK_ERROR_OUT_OF_DEVICE_MEMORY;
|
|
|
|
|
2015-10-14 15:18:49 -07:00
|
|
|
for (uint32_t s = 0; s < layout->stage[stage].sampler_count; s++) {
|
|
|
|
struct anv_pipeline_binding *binding =
|
|
|
|
&layout->stage[stage].sampler_to_descriptor[s];
|
|
|
|
struct anv_descriptor_set *set =
|
2015-10-14 19:00:17 -07:00
|
|
|
cmd_buffer->state.descriptors[binding->set];
|
2015-10-14 15:18:49 -07:00
|
|
|
struct anv_descriptor *desc = &set->descriptors[binding->offset];
|
2015-07-30 14:59:02 -07:00
|
|
|
|
2015-11-06 14:09:52 -08:00
|
|
|
if (desc->type != VK_DESCRIPTOR_TYPE_SAMPLER &&
|
|
|
|
desc->type != VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER)
|
2015-10-14 15:18:49 -07:00
|
|
|
continue;
|
2015-07-30 14:59:02 -07:00
|
|
|
|
2015-10-14 15:18:49 -07:00
|
|
|
struct anv_sampler *sampler = desc->sampler;
|
2015-07-30 14:59:02 -07:00
|
|
|
|
2015-11-06 14:09:52 -08:00
|
|
|
/* This can happen if we have an unfilled slot since TYPE_SAMPLER
|
|
|
|
* happens to be zero.
|
|
|
|
*/
|
2015-10-15 15:17:27 -07:00
|
|
|
if (sampler == NULL)
|
|
|
|
continue;
|
|
|
|
|
2015-10-14 15:18:49 -07:00
|
|
|
memcpy(state->map + (s * 16),
|
|
|
|
sampler->state, sizeof(sampler->state));
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-30 11:36:48 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
struct anv_state
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_emit_dynamic(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
uint32_t *a, uint32_t dwords, uint32_t alignment)
|
2015-07-29 11:57:44 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_state state;
|
|
|
|
|
|
|
|
state = anv_cmd_buffer_alloc_dynamic_state(cmd_buffer,
|
|
|
|
dwords * 4, alignment);
|
|
|
|
memcpy(state.map, a, dwords * 4);
|
|
|
|
|
|
|
|
VG(VALGRIND_CHECK_MEM_IS_DEFINED(state.map, dwords * 4));
|
|
|
|
|
|
|
|
return state;
|
2015-07-29 11:57:44 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
struct anv_state
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_merge_dynamic(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
uint32_t *a, uint32_t *b,
|
|
|
|
uint32_t dwords, uint32_t alignment)
|
2015-07-30 11:34:58 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
struct anv_state state;
|
|
|
|
uint32_t *p;
|
2015-07-30 11:34:58 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
state = anv_cmd_buffer_alloc_dynamic_state(cmd_buffer,
|
|
|
|
dwords * 4, alignment);
|
|
|
|
p = state.map;
|
|
|
|
for (uint32_t i = 0; i < dwords; i++)
|
|
|
|
p[i] = a[i] | b[i];
|
2015-07-30 11:34:58 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VG(VALGRIND_CHECK_MEM_IS_DEFINED(p, dwords * 4));
|
2015-07-30 11:34:58 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return state;
|
2015-07-30 11:34:58 -07:00
|
|
|
}
|
|
|
|
|
2015-08-17 16:17:07 -07:00
|
|
|
void
|
|
|
|
anv_cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
struct anv_subpass *subpass)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-08-19 21:30:08 -07:00
|
|
|
switch (cmd_buffer->device->info.gen) {
|
2015-08-20 22:59:19 -07:00
|
|
|
case 7:
|
|
|
|
gen7_cmd_buffer_begin_subpass(cmd_buffer, subpass);
|
|
|
|
break;
|
2015-08-19 21:30:08 -07:00
|
|
|
case 8:
|
|
|
|
gen8_cmd_buffer_begin_subpass(cmd_buffer, subpass);
|
|
|
|
break;
|
2015-11-25 22:27:01 -08:00
|
|
|
case 9:
|
|
|
|
gen9_cmd_buffer_begin_subpass(cmd_buffer, subpass);
|
|
|
|
break;
|
2015-08-19 21:30:08 -07:00
|
|
|
default:
|
|
|
|
unreachable("unsupported gen\n");
|
|
|
|
}
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdSetEvent(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
VkEvent event,
|
|
|
|
VkPipelineStageFlags stageMask)
|
|
|
|
{
|
|
|
|
stub();
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdResetEvent(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
VkEvent event,
|
|
|
|
VkPipelineStageFlags stageMask)
|
|
|
|
{
|
|
|
|
stub();
|
2015-07-27 14:23:56 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdWaitEvents(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
uint32_t eventCount,
|
|
|
|
const VkEvent* pEvents,
|
|
|
|
VkPipelineStageFlags srcStageMask,
|
|
|
|
VkPipelineStageFlags destStageMask,
|
|
|
|
uint32_t memBarrierCount,
|
|
|
|
const void* const* ppMemBarriers)
|
2015-07-27 14:23:56 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
stub();
|
|
|
|
}
|
2015-07-27 14:23:56 -07:00
|
|
|
|
2015-08-26 17:57:51 -07:00
|
|
|
struct anv_state
|
|
|
|
anv_cmd_buffer_push_constants(struct anv_cmd_buffer *cmd_buffer,
|
|
|
|
VkShaderStage stage)
|
|
|
|
{
|
2015-09-11 10:25:21 -07:00
|
|
|
struct anv_push_constants *data =
|
|
|
|
cmd_buffer->state.push_constants[stage];
|
2015-08-26 17:57:51 -07:00
|
|
|
struct brw_stage_prog_data *prog_data =
|
|
|
|
cmd_buffer->state.pipeline->prog_data[stage];
|
|
|
|
|
|
|
|
/* If we don't actually have any push constants, bail. */
|
|
|
|
if (data == NULL || prog_data->nr_params == 0)
|
|
|
|
return (struct anv_state) { .offset = 0 };
|
|
|
|
|
|
|
|
struct anv_state state =
|
|
|
|
anv_cmd_buffer_alloc_dynamic_state(cmd_buffer,
|
|
|
|
prog_data->nr_params * sizeof(float),
|
|
|
|
32 /* bottom 5 bits MBZ */);
|
|
|
|
|
|
|
|
/* Walk through the param array and fill the buffer with data */
|
|
|
|
uint32_t *u32_map = state.map;
|
|
|
|
for (unsigned i = 0; i < prog_data->nr_params; i++) {
|
|
|
|
uint32_t offset = (uintptr_t)prog_data->param[i];
|
|
|
|
u32_map[i] = *(uint32_t *)((uint8_t *)data + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdPushConstants(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
2015-07-30 14:59:02 -07:00
|
|
|
VkPipelineLayout layout,
|
|
|
|
VkShaderStageFlags stageFlags,
|
|
|
|
uint32_t start,
|
|
|
|
uint32_t length,
|
|
|
|
const void* values)
|
2015-07-30 11:36:48 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, commandBuffer);
|
2015-10-05 08:52:42 -07:00
|
|
|
VkShaderStage stage;
|
2015-08-26 15:01:38 -07:00
|
|
|
|
|
|
|
for_each_bit(stage, stageFlags) {
|
2015-09-11 10:25:21 -07:00
|
|
|
anv_cmd_buffer_ensure_push_constant_field(cmd_buffer, stage, client_data);
|
2015-08-26 15:01:38 -07:00
|
|
|
|
2015-09-11 10:25:21 -07:00
|
|
|
memcpy(cmd_buffer->state.push_constants[stage]->client_data + start,
|
2015-08-26 15:01:38 -07:00
|
|
|
values, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd_buffer->state.push_constants_dirty |= stageFlags;
|
2015-07-30 14:59:02 -07:00
|
|
|
}
|
2015-07-30 11:36:48 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
void anv_CmdExecuteCommands(
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandBuffer commandBuffer,
|
|
|
|
uint32_t commandBuffersCount,
|
|
|
|
const VkCommandBuffer* pCmdBuffers)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, primary, commandBuffer);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
assert(primary->level == VK_COMMAND_BUFFER_LEVEL_PRIMARY);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_assert(primary->state.subpass == &primary->state.pass->subpasses[0]);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
for (uint32_t i = 0; i < commandBuffersCount; i++) {
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_buffer, secondary, pCmdBuffers[i]);
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
assert(secondary->level == VK_COMMAND_BUFFER_LEVEL_SECONDARY);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_cmd_buffer_add_secondary(primary, secondary);
|
|
|
|
}
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_CreateCommandPool(
|
|
|
|
VkDevice _device,
|
2015-11-30 11:48:08 -08:00
|
|
|
const VkCommandPoolCreateInfo* pCreateInfo,
|
|
|
|
VkCommandPool* pCmdPool)
|
2015-07-15 12:09:52 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
struct anv_cmd_pool *pool;
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
pool = anv_device_alloc(device, sizeof(*pool), 8,
|
|
|
|
VK_SYSTEM_ALLOC_TYPE_API_OBJECT);
|
|
|
|
if (pool == NULL)
|
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
list_inithead(&pool->cmd_buffers);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
*pCmdPool = anv_cmd_pool_to_handle(pool);
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-07-15 12:09:52 -07:00
|
|
|
}
|
|
|
|
|
2015-10-05 20:50:51 -07:00
|
|
|
void anv_DestroyCommandPool(
|
2015-07-30 14:59:02 -07:00
|
|
|
VkDevice _device,
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandPool commandPool)
|
2015-07-27 14:52:16 -07:00
|
|
|
{
|
2015-07-30 14:59:02 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_pool, pool, commandPool);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-11-30 11:48:08 -08:00
|
|
|
anv_ResetCommandPool(_device, commandPool, 0);
|
2015-07-15 12:09:52 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
anv_device_free(device, pool);
|
|
|
|
}
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
VkResult anv_ResetCommandPool(
|
|
|
|
VkDevice device,
|
2015-11-30 11:48:08 -08:00
|
|
|
VkCommandPool commandPool,
|
|
|
|
VkCommandPoolResetFlags flags)
|
2015-07-30 14:59:02 -07:00
|
|
|
{
|
2015-11-30 11:48:08 -08:00
|
|
|
ANV_FROM_HANDLE(anv_cmd_pool, pool, commandPool);
|
2015-07-29 15:13:21 -07:00
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
list_for_each_entry_safe(struct anv_cmd_buffer, cmd_buffer,
|
|
|
|
&pool->cmd_buffers, pool_link) {
|
|
|
|
anv_DestroyCommandBuffer(device, anv_cmd_buffer_to_handle(cmd_buffer));
|
2015-07-29 15:13:21 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:59:02 -07:00
|
|
|
return VK_SUCCESS;
|
2015-07-27 14:52:16 -07:00
|
|
|
}
|
2015-08-28 07:57:34 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return NULL if the current subpass has no depthstencil attachment.
|
|
|
|
*/
|
2015-10-06 11:42:43 -07:00
|
|
|
const struct anv_image_view *
|
2015-08-28 07:57:34 -07:00
|
|
|
anv_cmd_buffer_get_depth_stencil_view(const struct anv_cmd_buffer *cmd_buffer)
|
|
|
|
{
|
|
|
|
const struct anv_subpass *subpass = cmd_buffer->state.subpass;
|
|
|
|
const struct anv_framebuffer *fb = cmd_buffer->state.framebuffer;
|
|
|
|
|
|
|
|
if (subpass->depth_stencil_attachment == VK_ATTACHMENT_UNUSED)
|
|
|
|
return NULL;
|
|
|
|
|
2015-10-06 11:42:43 -07:00
|
|
|
const struct anv_image_view *iview =
|
2015-08-28 07:57:34 -07:00
|
|
|
fb->attachments[subpass->depth_stencil_attachment];
|
|
|
|
|
2015-10-06 11:42:43 -07:00
|
|
|
assert(anv_format_is_depth_or_stencil(iview->format));
|
2015-08-28 07:57:34 -07:00
|
|
|
|
2015-10-06 11:42:43 -07:00
|
|
|
return iview;
|
2015-08-28 07:57:34 -07:00
|
|
|
}
|