mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 07:10:15 +01:00
venus/queue: Rename some local vars
Reduces noise in following patches. Signed-off-by: Chad Versace <chadversary@chromium.org> Reviewed-by: Yiwei Zhang <zzyiwei@chromium.org> Reviewed-by: Ryan Neph <ryanneph@google.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19046>
This commit is contained in:
parent
c71006726e
commit
e469bedb95
1 changed files with 5 additions and 4 deletions
|
|
@ -445,17 +445,18 @@ vn_queue_submit(struct vn_instance *instance,
|
|||
}
|
||||
|
||||
VkResult
|
||||
vn_QueueSubmit(VkQueue queue,
|
||||
vn_QueueSubmit(VkQueue queue_h,
|
||||
uint32_t submitCount,
|
||||
const VkSubmitInfo *pSubmits,
|
||||
VkFence fence)
|
||||
VkFence fence_h)
|
||||
{
|
||||
VN_TRACE_FUNC();
|
||||
struct vn_device *dev = vn_queue_from_handle(queue)->device;
|
||||
struct vn_queue *queue = vn_queue_from_handle(queue_h);
|
||||
struct vn_device *dev = queue->device;
|
||||
struct vn_queue_submission submit;
|
||||
|
||||
VkResult result = vn_queue_submission_prepare_submit(
|
||||
&submit, queue, submitCount, pSubmits, fence);
|
||||
&submit, queue_h, submitCount, pSubmits, fence_h);
|
||||
if (result != VK_SUCCESS)
|
||||
return vn_error(dev->instance, VK_ERROR_OUT_OF_HOST_MEMORY);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue