2016-09-21 14:41:31 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Józef Kucia for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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 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 "vkd3d_private.h"
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
static HRESULT vkd3d_command_allocator_allocate_command_list(struct d3d12_command_allocator *allocator,
|
|
|
|
struct d3d12_command_list *list)
|
|
|
|
{
|
|
|
|
struct d3d12_device *device = allocator->device;
|
|
|
|
const struct vkd3d_vk_device_procs *vk_procs = &device->vk_procs;
|
|
|
|
VkCommandBufferAllocateInfo command_buffer_info;
|
|
|
|
VkCommandBufferBeginInfo begin_info;
|
|
|
|
VkResult vr;
|
|
|
|
|
|
|
|
TRACE("allocator %p, list %p.\n", allocator, list);
|
|
|
|
|
|
|
|
if (allocator->current_command_list)
|
|
|
|
{
|
|
|
|
FIXME("Allocation for multiple command list not supported.\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
command_buffer_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO;
|
|
|
|
command_buffer_info.pNext = NULL;
|
|
|
|
command_buffer_info.commandPool = allocator->vk_command_pool;
|
|
|
|
command_buffer_info.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY;
|
|
|
|
command_buffer_info.commandBufferCount = 1;
|
|
|
|
|
|
|
|
if ((vr = VK_CALL(vkAllocateCommandBuffers(device->vk_device, &command_buffer_info,
|
|
|
|
&list->vk_command_buffer))))
|
|
|
|
{
|
|
|
|
WARN("Failed to allocate Vulkan command buffer, vr %d.\n", vr);
|
|
|
|
return hresult_from_vk_result(vr);
|
|
|
|
}
|
|
|
|
|
|
|
|
begin_info.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO;
|
|
|
|
begin_info.pNext = NULL;
|
|
|
|
begin_info.flags = 0;
|
|
|
|
begin_info.pInheritanceInfo = NULL;
|
|
|
|
|
|
|
|
if ((vr = VK_CALL(vkBeginCommandBuffer(list->vk_command_buffer, &begin_info))))
|
|
|
|
ERR("Failed to begin command buffer, vr %d.\n", vr);
|
|
|
|
|
|
|
|
allocator->current_command_list = list;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vkd3d_command_allocator_free_command_list(struct d3d12_command_allocator *allocator,
|
|
|
|
struct d3d12_command_list *list)
|
|
|
|
{
|
|
|
|
struct d3d12_device *device = allocator->device;
|
|
|
|
const struct vkd3d_vk_device_procs *vk_procs = &device->vk_procs;
|
|
|
|
|
|
|
|
TRACE("allocator %p, list %p.\n", allocator, list);
|
|
|
|
|
|
|
|
VK_CALL(vkFreeCommandBuffers(device->vk_device, allocator->vk_command_pool,
|
|
|
|
1, &list->vk_command_buffer));
|
|
|
|
|
|
|
|
if (allocator->current_command_list == list)
|
|
|
|
allocator->current_command_list = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vkd3d_command_list_destroyed(struct d3d12_command_list *list)
|
|
|
|
{
|
|
|
|
TRACE("list %p.\n", list);
|
|
|
|
|
|
|
|
list->allocator = NULL;
|
|
|
|
list->vk_command_buffer = VK_NULL_HANDLE;
|
|
|
|
}
|
|
|
|
|
2016-09-21 15:33:17 +02:00
|
|
|
/* ID3D12CommandAllocator */
|
|
|
|
static inline struct d3d12_command_allocator *impl_from_ID3D12CommandAllocator(ID3D12CommandAllocator *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d12_command_allocator, ID3D12CommandAllocator_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_QueryInterface(ID3D12CommandAllocator *iface,
|
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_ID3D12CommandAllocator)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12Pageable)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12DeviceChild)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12Object)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
ID3D12CommandAllocator_AddRef(iface);
|
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_command_allocator_AddRef(ID3D12CommandAllocator *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_allocator *allocator = impl_from_ID3D12CommandAllocator(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&allocator->refcount);
|
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", allocator, refcount);
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_command_allocator_Release(ID3D12CommandAllocator *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_allocator *allocator = impl_from_ID3D12CommandAllocator(iface);
|
|
|
|
ULONG refcount = InterlockedDecrement(&allocator->refcount);
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", allocator, refcount);
|
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
|
|
|
struct d3d12_device *device = allocator->device;
|
2016-09-27 12:13:37 +02:00
|
|
|
const struct vkd3d_vk_device_procs *vk_procs = &device->vk_procs;
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
if (allocator->current_command_list)
|
|
|
|
vkd3d_command_list_destroyed(allocator->current_command_list);
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
VK_CALL(vkDestroyCommandPool(device->vk_device, allocator->vk_command_pool, NULL));
|
2016-09-21 15:33:17 +02:00
|
|
|
|
|
|
|
vkd3d_free(allocator);
|
|
|
|
|
|
|
|
ID3D12Device_Release(&device->ID3D12Device_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_GetPrivateData(ID3D12CommandAllocator *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data_size %p, data %p stub!", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_SetPrivateData(ID3D12CommandAllocator *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data_size %u, data %p stub!\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_SetPrivateDataInterface(ID3D12CommandAllocator *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_SetName(ID3D12CommandAllocator *iface, const WCHAR *name)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, name %s stub!\n", iface, debugstr_w(name));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_GetDevice(ID3D12CommandAllocator *iface,
|
|
|
|
REFIID riid, void **device)
|
|
|
|
{
|
|
|
|
struct d3d12_command_allocator *allocator = impl_from_ID3D12CommandAllocator(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, device %p.\n", iface, debugstr_guid(riid), device);
|
|
|
|
|
|
|
|
return ID3D12Device_QueryInterface(&allocator->device->ID3D12Device_iface, riid, device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_allocator_Reset(ID3D12CommandAllocator *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D12CommandAllocatorVtbl d3d12_command_allocator_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d12_command_allocator_QueryInterface,
|
|
|
|
d3d12_command_allocator_AddRef,
|
|
|
|
d3d12_command_allocator_Release,
|
|
|
|
/* ID3D12Object methods */
|
|
|
|
d3d12_command_allocator_GetPrivateData,
|
|
|
|
d3d12_command_allocator_SetPrivateData,
|
|
|
|
d3d12_command_allocator_SetPrivateDataInterface,
|
|
|
|
d3d12_command_allocator_SetName,
|
|
|
|
/* ID3D12DeviceChild methods */
|
|
|
|
d3d12_command_allocator_GetDevice,
|
|
|
|
/* ID3D12CommandAllocator methods */
|
|
|
|
d3d12_command_allocator_Reset,
|
|
|
|
};
|
|
|
|
|
2016-09-21 16:18:13 +02:00
|
|
|
static struct d3d12_command_allocator *unsafe_impl_from_ID3D12CommandAllocator(ID3D12CommandAllocator *iface)
|
|
|
|
{
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
assert(iface->lpVtbl == &d3d12_command_allocator_vtbl);
|
|
|
|
return impl_from_ID3D12CommandAllocator(iface);
|
|
|
|
}
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
static HRESULT d3d12_command_allocator_init(struct d3d12_command_allocator *allocator,
|
2016-09-21 15:33:17 +02:00
|
|
|
struct d3d12_device *device, D3D12_COMMAND_LIST_TYPE type)
|
|
|
|
{
|
2016-09-27 12:13:37 +02:00
|
|
|
const struct vkd3d_vk_device_procs *vk_procs = &device->vk_procs;
|
|
|
|
VkCommandPoolCreateInfo command_pool_info;
|
|
|
|
VkResult vr;
|
|
|
|
|
2016-09-21 15:33:17 +02:00
|
|
|
allocator->ID3D12CommandAllocator_iface.lpVtbl = &d3d12_command_allocator_vtbl;
|
|
|
|
allocator->refcount = 1;
|
|
|
|
|
|
|
|
allocator->type = type;
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
command_pool_info.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO;
|
|
|
|
command_pool_info.pNext = NULL;
|
|
|
|
command_pool_info.flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT;
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case D3D12_COMMAND_LIST_TYPE_DIRECT:
|
|
|
|
command_pool_info.queueFamilyIndex = device->direct_queue_family_index;
|
|
|
|
break;
|
|
|
|
case D3D12_COMMAND_LIST_TYPE_COPY:
|
|
|
|
command_pool_info.queueFamilyIndex = device->copy_queue_family_index;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled command list type %#x.\n", type);
|
|
|
|
command_pool_info.queueFamilyIndex = device->direct_queue_family_index;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((vr = VK_CALL(vkCreateCommandPool(device->vk_device, &command_pool_info, NULL,
|
|
|
|
&allocator->vk_command_pool))))
|
|
|
|
{
|
|
|
|
WARN("Failed to create Vulkan command pool, vr %d.\n", vr);
|
|
|
|
return hresult_from_vk_result(vr);
|
|
|
|
}
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
allocator->current_command_list = NULL;
|
|
|
|
|
2016-09-21 15:33:17 +02:00
|
|
|
allocator->device = device;
|
|
|
|
ID3D12Device_AddRef(&device->ID3D12Device_iface);
|
2016-09-27 12:13:37 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2016-09-21 15:33:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT d3d12_command_allocator_create(struct d3d12_device *device,
|
|
|
|
D3D12_COMMAND_LIST_TYPE type, struct d3d12_command_allocator **allocator)
|
|
|
|
{
|
|
|
|
struct d3d12_command_allocator *object;
|
2016-09-27 12:13:37 +02:00
|
|
|
HRESULT hr;
|
2016-09-21 15:33:17 +02:00
|
|
|
|
|
|
|
if (!(D3D12_COMMAND_LIST_TYPE_DIRECT <= type && type <= D3D12_COMMAND_LIST_TYPE_COPY))
|
|
|
|
{
|
|
|
|
WARN("Invalid type %#x.\n", type);
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(object = vkd3d_malloc(sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
if (FAILED(hr = d3d12_command_allocator_init(object, device, type)))
|
|
|
|
{
|
|
|
|
vkd3d_free(object);
|
|
|
|
return hr;
|
|
|
|
}
|
2016-09-21 15:33:17 +02:00
|
|
|
|
|
|
|
TRACE("Created command allocator %p.\n", object);
|
|
|
|
|
|
|
|
*allocator = object;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-09-21 16:18:13 +02:00
|
|
|
/* ID3D12CommandList */
|
|
|
|
static inline struct d3d12_command_list *impl_from_ID3D12GraphicsCommandList(ID3D12GraphicsCommandList *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d12_command_list, ID3D12GraphicsCommandList_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_QueryInterface(ID3D12GraphicsCommandList *iface,
|
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_ID3D12GraphicsCommandList)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12CommandList)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12DeviceChild)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12Object)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
ID3D12GraphicsCommandList_AddRef(iface);
|
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_command_list_AddRef(ID3D12GraphicsCommandList *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_list *list = impl_from_ID3D12GraphicsCommandList(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&list->refcount);
|
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", list, refcount);
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_command_list_Release(ID3D12GraphicsCommandList *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_list *list = impl_from_ID3D12GraphicsCommandList(iface);
|
|
|
|
ULONG refcount = InterlockedDecrement(&list->refcount);
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", list, refcount);
|
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
|
|
|
struct d3d12_device *device = list->device;
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
/* When command pool is destroyed, all command buffers are implicitly freed. */
|
|
|
|
if (list->allocator)
|
|
|
|
vkd3d_command_allocator_free_command_list(list->allocator, list);
|
|
|
|
|
2016-09-21 16:18:13 +02:00
|
|
|
vkd3d_free(list);
|
|
|
|
|
|
|
|
ID3D12Device_Release(&device->ID3D12Device_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_GetPrivateData(ID3D12GraphicsCommandList *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data_size %p, data %p stub!", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_SetPrivateData(ID3D12GraphicsCommandList *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data_size %u, data %p stub!\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_SetPrivateDataInterface(ID3D12GraphicsCommandList *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_SetName(ID3D12GraphicsCommandList *iface, const WCHAR *name)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, name %s stub!\n", iface, debugstr_w(name));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_GetDevice(ID3D12GraphicsCommandList *iface,
|
|
|
|
REFIID riid, void **device)
|
|
|
|
{
|
|
|
|
struct d3d12_command_list *list = impl_from_ID3D12GraphicsCommandList(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, device %p.\n", iface, debugstr_guid(riid), device);
|
|
|
|
|
|
|
|
return ID3D12Device_QueryInterface(&list->device->ID3D12Device_iface, riid, device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static D3D12_COMMAND_LIST_TYPE STDMETHODCALLTYPE d3d12_command_list_GetType(ID3D12GraphicsCommandList *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_list *list = impl_from_ID3D12GraphicsCommandList(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
return list->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_Close(ID3D12GraphicsCommandList *iface)
|
|
|
|
{
|
2016-09-27 12:13:37 +02:00
|
|
|
struct d3d12_command_list *list = impl_from_ID3D12GraphicsCommandList(iface);
|
|
|
|
const struct vkd3d_vk_device_procs *vk_procs;
|
|
|
|
VkResult vr;
|
2016-09-21 16:18:13 +02:00
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
TRACE("iface %p.\n", iface);
|
|
|
|
|
|
|
|
vk_procs = &list->device->vk_procs;
|
|
|
|
vr = VK_CALL(vkEndCommandBuffer(list->vk_command_buffer));
|
|
|
|
return hresult_from_vk_result(vr);
|
2016-09-21 16:18:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_Reset(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12CommandAllocator *allocator, ID3D12PipelineState *initial_state)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, allocator %p, initial_state %p stub!\n",
|
|
|
|
iface, allocator, initial_state);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_list_ClearState(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12PipelineState *pipeline_state)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, pipline_state %p stub!\n", iface, pipeline_state);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_DrawInstanced(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT vertex_count_per_instance, UINT instance_count, UINT start_vertex_location,
|
|
|
|
UINT start_instance_location)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, vertex_count_per_instance %u, instance_count %u, "
|
|
|
|
"start_vertex_location %u, start_instance_location %u stub!\n",
|
|
|
|
iface, vertex_count_per_instance, instance_count,
|
|
|
|
start_vertex_location, start_instance_location);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_DrawIndexedInstanced(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT index_count_per_instance, UINT instance_count, UINT start_vertex_location,
|
|
|
|
INT base_vertex_location, UINT start_instance_location)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index_count_per_instance %u, instance_count %u, start_vertex_location %u, "
|
|
|
|
"base_vertex_location %d, start_instance_location %u stub!\n",
|
|
|
|
iface, index_count_per_instance, instance_count, start_vertex_location,
|
|
|
|
base_vertex_location, start_instance_location);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_Dispatch(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT x, UINT y, UINT z)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, x %u, y %u, z %u stub!\n", iface, x, y, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_CopyBufferRegion(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12Resource *dst_resource, UINT64 dst_offset, ID3D12Resource *src_resource,
|
|
|
|
UINT64 src_offset, UINT64 byte_count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, dst_resource %p, dst_offset %s, src_resource %p, src_offset %s, byte_count %s stub!\n",
|
|
|
|
iface, dst_resource, debugstr_uint64(dst_offset), src_resource,
|
|
|
|
debugstr_uint64(src_offset), debugstr_uint64(byte_count));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_CopyTextureRegion(ID3D12GraphicsCommandList *iface,
|
|
|
|
const D3D12_TEXTURE_COPY_LOCATION *dst, UINT dst_x, UINT dst_y, UINT dst_z,
|
|
|
|
const D3D12_TEXTURE_COPY_LOCATION *src, const D3D12_BOX *src_box)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, dst %p, dst_x %u, dst_y %u, dst_z %u, src %p, src_box %p stub!\n",
|
|
|
|
iface, dst, dst_x, dst_y, dst_z, src, src_box);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_CopyResource(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12Resource *dst_resource, ID3D12Resource *src_resource)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, dst_resource %p, src_resource %p stub!\n", iface, dst_resource, src_resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_CopyTiles(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12Resource *tiled_resource, const D3D12_TILED_RESOURCE_COORDINATE *tile_region_start_coordinate,
|
|
|
|
const D3D12_TILE_REGION_SIZE *tile_region_size, ID3D12Resource *buffer, UINT64 buffer_offset,
|
|
|
|
D3D12_TILE_COPY_FLAGS flags)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, tiled_resource %p, tile_region_start_coordinate %p, tile_region_size %p, "
|
|
|
|
"buffer %p, buffer_offset %s, flags %#x stub!\n",
|
|
|
|
iface, tiled_resource, tile_region_start_coordinate, tile_region_size,
|
|
|
|
buffer, debugstr_uint64(buffer_offset), flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ResolveSubresource(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12Resource *dst_resource, UINT dst_sub_resource,
|
|
|
|
ID3D12Resource *src_resource, UINT src_sub_resource, DXGI_FORMAT format)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, dst_resource %p, dst_sub_resource %u, src_resource %p, src_sub_resource %u, "
|
|
|
|
"format %#x stub!\n",
|
|
|
|
iface, dst_resource, dst_sub_resource, src_resource, src_sub_resource, format);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_IASetPrimitiveTopology(ID3D12GraphicsCommandList *iface,
|
|
|
|
D3D12_PRIMITIVE_TOPOLOGY primitive_topology)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, primitive_topology %#x stub!\n", iface, primitive_topology);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_RSSetViewports(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT viewport_count, const D3D12_VIEWPORT *viewports)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, viewport_count %u, viewports %p stub!\n",
|
|
|
|
iface, viewport_count, viewports);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_RSSetScissorRects(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT rect_count, const D3D12_RECT *rects)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, rect_count %u, rects %p stub!\n",
|
|
|
|
iface, rect_count, rects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_OMSetBlendFactor(ID3D12GraphicsCommandList *iface,
|
|
|
|
const FLOAT blend_factor[4])
|
|
|
|
{
|
|
|
|
FIXME("iface %p, blend_factor %p stub!\n", iface, blend_factor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_OMSetStencilRef(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT stencil_ref)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, stencil_ref %u stub!\n", iface, stencil_ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetPipelineState(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12PipelineState *pipeline_state)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, pipeline_state %p stub!\n", iface, pipeline_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ResourceBarrier(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT barrier_count, const D3D12_RESOURCE_BARRIER *barriers)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, barrier_count %u, barriers %p stub!\n",
|
|
|
|
iface, barrier_count, barriers);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ExecuteBundle(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12GraphicsCommandList *command_list)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, command_list %p stub!\n", iface, command_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetDescriptorHeaps(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT heap_count, ID3D12DescriptorHeap *const *heaps)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, heap_count %u, heaps %p stub!\n", iface, heap_count, heaps);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRootSignature(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12RootSignature *root_signature)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_signature %p stub!\n", iface, root_signature);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRootSignature(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12RootSignature *root_signature)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_signature %p stub!\n", iface, root_signature);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRootDescriptorTable(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT root_parameter_index, D3D12_GPU_DESCRIPTOR_HANDLE base_descriptor)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, base_descriptor %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(base_descriptor.ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRootDescriptorTable(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT root_parameter_index, D3D12_GPU_DESCRIPTOR_HANDLE base_descriptor)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, base_descriptor %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(base_descriptor.ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRoot32BitConstant(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT root_parameter_index, UINT data, UINT dst_offset)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, data 0x%08x, dst_offset %u stub!\n",
|
|
|
|
iface, root_parameter_index, data, dst_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRoot32BitConstant(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT root_parameter_index, UINT data, UINT dst_offset)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, data 0x%08x, dst_offset %u stub!\n",
|
|
|
|
iface, root_parameter_index, data, dst_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRoot32BitConstants(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT root_parameter_index, UINT constant_count, const void *data, UINT dst_offset)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, constant_count %u, data %p, dst_offset %u stub!\n",
|
|
|
|
iface, root_parameter_index, constant_count, data, dst_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRoot32BitConstants(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT root_parameter_index, UINT constant_count, const void *data, UINT dst_offset)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, constant_count %u, data %p, dst_offset %u stub!\n",
|
|
|
|
iface, root_parameter_index, constant_count, data, dst_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRootConstantBufferView(
|
|
|
|
ID3D12GraphicsCommandList *iface, UINT root_parameter_index, D3D12_GPU_VIRTUAL_ADDRESS address)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, address %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(address));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRootConstantBufferView(
|
|
|
|
ID3D12GraphicsCommandList *iface, UINT root_parameter_index, D3D12_GPU_VIRTUAL_ADDRESS address)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, address %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(address));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRootShaderResourceView(
|
|
|
|
ID3D12GraphicsCommandList *iface, UINT root_parameter_index, D3D12_GPU_VIRTUAL_ADDRESS address)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, address %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(address));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRootShaderResourceView(
|
|
|
|
ID3D12GraphicsCommandList *iface, UINT root_parameter_index, D3D12_GPU_VIRTUAL_ADDRESS address)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, address %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(address));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetComputeRootUnorderedAccessView(
|
|
|
|
ID3D12GraphicsCommandList *iface, UINT root_parameter_index, D3D12_GPU_VIRTUAL_ADDRESS address)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, address %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(address));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetGraphicsRootUnorderedAccessView(
|
|
|
|
ID3D12GraphicsCommandList *iface, UINT root_parameter_index, D3D12_GPU_VIRTUAL_ADDRESS address)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, root_parameter_index %u, address %s stub!\n",
|
|
|
|
iface, root_parameter_index, debugstr_uint64(address));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_IASetIndexBuffer(ID3D12GraphicsCommandList *iface,
|
|
|
|
const D3D12_INDEX_BUFFER_VIEW *view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_IASetVertexBuffers(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT start_slot, UINT view_count, const D3D12_VERTEX_BUFFER_VIEW *views)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n", iface, start_slot, view_count, views);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SOSetTargets(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT start_slot, UINT view_count, const D3D12_STREAM_OUTPUT_BUFFER_VIEW *views)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, start_slot %u, view_count %u, views %p stub!\n", iface, start_slot, view_count, views);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_OMSetRenderTargets(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT render_target_descriptor_count, const D3D12_CPU_DESCRIPTOR_HANDLE *render_target_descriptors,
|
|
|
|
BOOL single_descriptor_handle, const D3D12_CPU_DESCRIPTOR_HANDLE *depth_stencil_descriptor)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, render_target_descriptor_count %u, render_target_descriptors %p, "
|
|
|
|
"single_descriptor_handle %#x, depth_stencil_descriptor %p stub!\n",
|
|
|
|
iface, render_target_descriptor_count, render_target_descriptors,
|
|
|
|
single_descriptor_handle, depth_stencil_descriptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ClearDepthStencilView(ID3D12GraphicsCommandList *iface,
|
|
|
|
D3D12_CPU_DESCRIPTOR_HANDLE dsv, D3D12_CLEAR_FLAGS flags, FLOAT depth, UINT8 stencil,
|
|
|
|
UINT rect_count, const D3D12_RECT *rects)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, dsv %#lx, flags %#x, depth %.8e, stencil 0x%02x, rect_count %u, rects %p stub!\n",
|
|
|
|
iface, dsv.ptr, flags, depth, stencil, rect_count, rects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ClearRenderTargetView(ID3D12GraphicsCommandList *iface,
|
|
|
|
D3D12_CPU_DESCRIPTOR_HANDLE rtv, const FLOAT color[4], UINT rect_count, const D3D12_RECT *rects)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, rtv %#lx, color %p, rect_count %u, rects %p stub!\n",
|
|
|
|
iface, rtv.ptr, color, rect_count, rects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ClearUnorderedAccessViewFloat(ID3D12GraphicsCommandList *iface,
|
|
|
|
D3D12_GPU_DESCRIPTOR_HANDLE gpu_handle, D3D12_CPU_DESCRIPTOR_HANDLE cpu_handle,
|
|
|
|
ID3D12Resource *resource, UINT rect_count, const D3D12_RECT *rects)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, gpu_handle %s, cpu_handle %lx, resource %p, rect_count %u, rects %p stub!\n",
|
|
|
|
iface, debugstr_uint64(gpu_handle.ptr), cpu_handle.ptr, resource, rect_count, rects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_DiscardResource(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12Resource *resource, const D3D12_DISCARD_REGION *region)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, resource %p, region %p stub!\n", iface, resource, region);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_BeginQuery(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12QueryHeap *heap, D3D12_QUERY_TYPE type, UINT index)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, heap %p, type %#x, index %u stub!\n", iface, heap, type, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_EndQuery(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12QueryHeap *heap, D3D12_QUERY_TYPE type, UINT index)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, heap %p, type %#x, index %u stub!\n", iface, heap, type, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ResolveQueryData(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12QueryHeap *heap, D3D12_QUERY_TYPE type, UINT start_index, UINT query_count,
|
|
|
|
ID3D12Resource *dst_buffer, UINT64 aligned_dst_buffer_offset)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, heap %p, type %#x, start_index %u, query_count %u, "
|
|
|
|
"dst_buffer %p, aligned_dst_buffer_offset %s stub!\n",
|
|
|
|
iface, heap, type, start_index, query_count,
|
|
|
|
dst_buffer, debugstr_uint64(aligned_dst_buffer_offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetPredication(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12Resource *buffer, UINT64 aligned_buffer_offset, D3D12_PREDICATION_OP operation)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, buffer %p, aligned_buffer_offset %s, operation %#x stub!\n",
|
|
|
|
iface, buffer, debugstr_uint64(aligned_buffer_offset), operation);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_SetMarker(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT metadata, const void *data, UINT size)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, metadata %#x, data %p, size %u stub!\n", iface, metadata, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_BeginEvent(ID3D12GraphicsCommandList *iface,
|
|
|
|
UINT metadata, const void *data, UINT size)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, metadata %#x, data %p, size %u stub!\n", iface, metadata, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_EndEvent(ID3D12GraphicsCommandList *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_list_ExecuteIndirect(ID3D12GraphicsCommandList *iface,
|
|
|
|
ID3D12CommandSignature *command_signature,
|
|
|
|
UINT max_command_count, ID3D12Resource *arg_buffer,
|
|
|
|
UINT64 arg_buffer_offset, ID3D12Resource *count_buffer, UINT64 count_buffer_offset)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, command_signature %p, max_command_count %u, arg_buffer %p, "
|
|
|
|
"arg_buffer_offset %s, count_buffer %p, count_buffer_offset %s stub!\n",
|
|
|
|
iface, command_signature, max_command_count, arg_buffer, debugstr_uint64(arg_buffer_offset),
|
|
|
|
count_buffer, debugstr_uint64(count_buffer_offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D12GraphicsCommandListVtbl d3d12_command_list_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d12_command_list_QueryInterface,
|
|
|
|
d3d12_command_list_AddRef,
|
|
|
|
d3d12_command_list_Release,
|
|
|
|
/* ID3D12Object methods */
|
|
|
|
d3d12_command_list_GetPrivateData,
|
|
|
|
d3d12_command_list_SetPrivateData,
|
|
|
|
d3d12_command_list_SetPrivateDataInterface,
|
|
|
|
d3d12_command_list_SetName,
|
|
|
|
/* ID3D12DeviceChild methods */
|
|
|
|
d3d12_command_list_GetDevice,
|
|
|
|
/* ID3D12CommandList methods */
|
|
|
|
d3d12_command_list_GetType,
|
|
|
|
/* ID3D12GraphicsCommandList methods */
|
|
|
|
d3d12_command_list_Close,
|
|
|
|
d3d12_command_list_Reset,
|
|
|
|
d3d12_command_list_ClearState,
|
|
|
|
d3d12_command_list_DrawInstanced,
|
|
|
|
d3d12_command_list_DrawIndexedInstanced,
|
|
|
|
d3d12_command_list_Dispatch,
|
|
|
|
d3d12_command_list_CopyBufferRegion,
|
|
|
|
d3d12_command_list_CopyTextureRegion,
|
|
|
|
d3d12_command_list_CopyResource,
|
|
|
|
d3d12_command_list_CopyTiles,
|
|
|
|
d3d12_command_list_ResolveSubresource,
|
|
|
|
d3d12_command_list_IASetPrimitiveTopology,
|
|
|
|
d3d12_command_list_RSSetViewports,
|
|
|
|
d3d12_command_list_RSSetScissorRects,
|
|
|
|
d3d12_command_list_OMSetBlendFactor,
|
|
|
|
d3d12_command_list_OMSetStencilRef,
|
|
|
|
d3d12_command_list_SetPipelineState,
|
|
|
|
d3d12_command_list_ResourceBarrier,
|
|
|
|
d3d12_command_list_ExecuteBundle,
|
|
|
|
d3d12_command_list_SetDescriptorHeaps,
|
|
|
|
d3d12_command_list_SetComputeRootSignature,
|
|
|
|
d3d12_command_list_SetGraphicsRootSignature,
|
|
|
|
d3d12_command_list_SetComputeRootDescriptorTable,
|
|
|
|
d3d12_command_list_SetGraphicsRootDescriptorTable,
|
|
|
|
d3d12_command_list_SetComputeRoot32BitConstant,
|
|
|
|
d3d12_command_list_SetGraphicsRoot32BitConstant,
|
|
|
|
d3d12_command_list_SetComputeRoot32BitConstants,
|
|
|
|
d3d12_command_list_SetGraphicsRoot32BitConstants,
|
|
|
|
d3d12_command_list_SetComputeRootConstantBufferView,
|
|
|
|
d3d12_command_list_SetGraphicsRootConstantBufferView,
|
|
|
|
d3d12_command_list_SetComputeRootShaderResourceView,
|
|
|
|
d3d12_command_list_SetGraphicsRootShaderResourceView,
|
|
|
|
d3d12_command_list_SetComputeRootUnorderedAccessView,
|
|
|
|
d3d12_command_list_SetGraphicsRootUnorderedAccessView,
|
|
|
|
d3d12_command_list_IASetIndexBuffer,
|
|
|
|
d3d12_command_list_IASetVertexBuffers,
|
|
|
|
d3d12_command_list_SOSetTargets,
|
|
|
|
d3d12_command_list_OMSetRenderTargets,
|
|
|
|
d3d12_command_list_ClearDepthStencilView,
|
|
|
|
d3d12_command_list_ClearRenderTargetView,
|
|
|
|
d3d12_command_list_ClearUnorderedAccessViewFloat,
|
|
|
|
d3d12_command_list_DiscardResource,
|
|
|
|
d3d12_command_list_BeginQuery,
|
|
|
|
d3d12_command_list_EndQuery,
|
|
|
|
d3d12_command_list_ResolveQueryData,
|
|
|
|
d3d12_command_list_SetPredication,
|
|
|
|
d3d12_command_list_SetMarker,
|
|
|
|
d3d12_command_list_BeginEvent,
|
|
|
|
d3d12_command_list_EndEvent,
|
|
|
|
d3d12_command_list_ExecuteIndirect,
|
|
|
|
};
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
static HRESULT d3d12_command_list_init(struct d3d12_command_list *list, struct d3d12_device *device,
|
2016-09-21 16:18:13 +02:00
|
|
|
D3D12_COMMAND_LIST_TYPE type, struct d3d12_command_allocator *allocator,
|
|
|
|
ID3D12PipelineState *initial_pipeline_state)
|
|
|
|
{
|
2016-09-27 12:13:37 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2016-09-21 16:18:13 +02:00
|
|
|
list->ID3D12GraphicsCommandList_iface.lpVtbl = &d3d12_command_list_vtbl;
|
|
|
|
list->refcount = 1;
|
|
|
|
|
|
|
|
list->type = type;
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
list->allocator = allocator;
|
|
|
|
if (FAILED(hr = vkd3d_command_allocator_allocate_command_list(allocator, list)))
|
|
|
|
return hr;
|
|
|
|
|
2016-09-21 16:18:13 +02:00
|
|
|
if (initial_pipeline_state)
|
|
|
|
FIXME("Ignoring initial pipeline state %p.\n", initial_pipeline_state);
|
|
|
|
|
|
|
|
list->device = device;
|
|
|
|
ID3D12Device_AddRef(&device->ID3D12Device_iface);
|
2016-09-27 12:13:37 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2016-09-21 16:18:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT d3d12_command_list_create(struct d3d12_device *device,
|
|
|
|
UINT node_mask, D3D12_COMMAND_LIST_TYPE type, ID3D12CommandAllocator *allocator_iface,
|
|
|
|
ID3D12PipelineState *initial_pipeline_state, struct d3d12_command_list **list)
|
|
|
|
{
|
|
|
|
struct d3d12_command_allocator *allocator;
|
|
|
|
struct d3d12_command_list *object;
|
2016-09-27 12:13:37 +02:00
|
|
|
HRESULT hr;
|
2016-09-21 16:18:13 +02:00
|
|
|
|
|
|
|
if (!(allocator = unsafe_impl_from_ID3D12CommandAllocator(allocator_iface)))
|
|
|
|
{
|
|
|
|
WARN("Command allocator is NULL.\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allocator->type != type)
|
|
|
|
{
|
|
|
|
WARN("Command list types do not match (allocator %#x, list %#x).\n",
|
|
|
|
allocator->type, type);
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node_mask && node_mask != 1)
|
|
|
|
FIXME("Multi-adapter not supported.\n");
|
|
|
|
|
|
|
|
if (!(object = vkd3d_malloc(sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2016-09-27 12:13:37 +02:00
|
|
|
if (FAILED(hr = d3d12_command_list_init(object, device, type, allocator, initial_pipeline_state)))
|
|
|
|
{
|
|
|
|
vkd3d_free(object);
|
|
|
|
return hr;
|
|
|
|
}
|
2016-09-21 16:18:13 +02:00
|
|
|
|
|
|
|
TRACE("Created command list %p.\n", object);
|
|
|
|
|
|
|
|
*list = object;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2016-09-21 14:41:31 +02:00
|
|
|
/* ID3D12CommandQueue */
|
|
|
|
static inline struct d3d12_command_queue *impl_from_ID3D12CommandQueue(ID3D12CommandQueue *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d12_command_queue, ID3D12CommandQueue_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_QueryInterface(ID3D12CommandQueue *iface,
|
|
|
|
REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_ID3D12CommandQueue)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12Pageable)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12DeviceChild)
|
|
|
|
|| IsEqualGUID(riid, &IID_ID3D12Object)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
ID3D12CommandQueue_AddRef(iface);
|
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_command_queue_AddRef(ID3D12CommandQueue *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_queue *command_queue = impl_from_ID3D12CommandQueue(iface);
|
|
|
|
ULONG refcount = InterlockedIncrement(&command_queue->refcount);
|
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", command_queue, refcount);
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d12_command_queue_Release(ID3D12CommandQueue *iface)
|
|
|
|
{
|
|
|
|
struct d3d12_command_queue *command_queue = impl_from_ID3D12CommandQueue(iface);
|
|
|
|
ULONG refcount = InterlockedDecrement(&command_queue->refcount);
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", command_queue, refcount);
|
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
|
|
|
struct d3d12_device *device = command_queue->device;
|
|
|
|
|
|
|
|
vkd3d_free(command_queue);
|
|
|
|
|
|
|
|
ID3D12Device_Release(&device->ID3D12Device_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_GetPrivateData(ID3D12CommandQueue *iface,
|
|
|
|
REFGUID guid, UINT *data_size, void *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data_size %p, data %p stub!", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_SetPrivateData(ID3D12CommandQueue *iface,
|
|
|
|
REFGUID guid, UINT data_size, const void *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data_size %u, data %p stub!\n", iface, debugstr_guid(guid), data_size, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_SetPrivateDataInterface(ID3D12CommandQueue *iface,
|
|
|
|
REFGUID guid, const IUnknown *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, guid %s, data %p stub!\n", iface, debugstr_guid(guid), data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_SetName(ID3D12CommandQueue *iface, const WCHAR *name)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, name %s stub!\n", iface, debugstr_w(name));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_GetDevice(ID3D12CommandQueue *iface,
|
|
|
|
REFIID riid, void **device)
|
|
|
|
{
|
|
|
|
struct d3d12_command_queue *command_queue = impl_from_ID3D12CommandQueue(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, riid %s, device %p.\n", iface, debugstr_guid(riid), device);
|
|
|
|
|
|
|
|
return ID3D12Device_QueryInterface(&command_queue->device->ID3D12Device_iface, riid, device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_queue_UpdateTileMappings(ID3D12CommandQueue *iface,
|
|
|
|
ID3D12Resource *resource, UINT region_count,
|
|
|
|
const D3D12_TILED_RESOURCE_COORDINATE *region_start_coordinates,
|
|
|
|
const D3D12_TILE_REGION_SIZE *region_sizes,
|
|
|
|
UINT range_count,
|
|
|
|
const D3D12_TILE_RANGE_FLAGS *range_flags,
|
|
|
|
UINT *heap_range_offsets,
|
|
|
|
UINT *range_tile_counts,
|
|
|
|
D3D12_TILE_MAPPING_FLAGS flags)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, resource %p, region_count %u, region_start_coordinates %p, "
|
|
|
|
"region_sizes %p, range_count %u, range_flags %p, heap_range_offsets %p, "
|
|
|
|
"range_tile_counts %p, flags %#x stub!\n",
|
|
|
|
iface, resource, region_count, region_start_coordinates, region_sizes, range_count,
|
|
|
|
range_flags, heap_range_offsets, range_tile_counts, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_queue_CopyTileMappings(ID3D12CommandQueue *iface,
|
|
|
|
ID3D12Resource *dst_resource,
|
|
|
|
const D3D12_TILED_RESOURCE_COORDINATE *dst_region_start_coordinate,
|
|
|
|
ID3D12Resource *src_resource,
|
|
|
|
const D3D12_TILED_RESOURCE_COORDINATE *src_region_start_coordinate,
|
|
|
|
const D3D12_TILE_REGION_SIZE *region_size,
|
|
|
|
D3D12_TILE_MAPPING_FLAGS flags)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, dst_resource %p, dst_region_start_coordinate %p, "
|
|
|
|
"src_resource %p, src_region_start_coordinate %p, region_size %p, flags %#x stub!\n",
|
|
|
|
iface, dst_resource, dst_region_start_coordinate, src_resource,
|
|
|
|
src_region_start_coordinate, region_size, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_queue_ExecuteCommandLists(ID3D12CommandQueue *iface,
|
|
|
|
UINT command_list_count, ID3D12CommandList * const *command_lists)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, command_list_count %u, command_lists %p stub!\n",
|
|
|
|
iface, command_list_count, command_lists);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_queue_SetMarker(ID3D12CommandQueue *iface,
|
|
|
|
UINT metadata, const void *data, UINT size)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, metadata %#x, datap %p, size %u stub!\n",
|
|
|
|
iface, metadata, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_queue_BeginEvent(ID3D12CommandQueue *iface,
|
|
|
|
UINT metadata, const void *data, UINT size)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, metatdata %#x, data %p, size %u stub!\n",
|
|
|
|
iface, metadata, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void STDMETHODCALLTYPE d3d12_command_queue_EndEvent(ID3D12CommandQueue *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_Signal(ID3D12CommandQueue *iface,
|
|
|
|
ID3D12Fence *fence, UINT64 value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, fence %p, value %s stub!\n", iface, fence, debugstr_uint64(value));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_Wait(ID3D12CommandQueue *iface,
|
|
|
|
ID3D12Fence *fence, UINT64 value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, fence %p, value %s stub!\n", iface, fence, debugstr_uint64(value));
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_GetTimestampFrequency(ID3D12CommandQueue *iface,
|
|
|
|
UINT64 *frequency)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, frequency %p stub!\n", iface, frequency);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d12_command_queue_GetClockCalibration(ID3D12CommandQueue *iface,
|
|
|
|
UINT64 *gpu_timestamp, UINT64 *cpu_timestamp)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, gpu_timestamp %p, cpu_timestamp %p stub!\n",
|
|
|
|
iface, gpu_timestamp, cpu_timestamp);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static D3D12_COMMAND_QUEUE_DESC * STDMETHODCALLTYPE d3d12_command_queue_GetDesc(ID3D12CommandQueue *iface,
|
|
|
|
D3D12_COMMAND_QUEUE_DESC *desc)
|
|
|
|
{
|
|
|
|
struct d3d12_command_queue *command_queue = impl_from_ID3D12CommandQueue(iface);
|
|
|
|
|
|
|
|
TRACE("iface %p, desc %p.\n", iface, desc);
|
|
|
|
|
|
|
|
*desc = command_queue->desc;
|
|
|
|
return desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D12CommandQueueVtbl d3d12_command_queue_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d12_command_queue_QueryInterface,
|
|
|
|
d3d12_command_queue_AddRef,
|
|
|
|
d3d12_command_queue_Release,
|
|
|
|
/* ID3D12Object methods */
|
|
|
|
d3d12_command_queue_GetPrivateData,
|
|
|
|
d3d12_command_queue_SetPrivateData,
|
|
|
|
d3d12_command_queue_SetPrivateDataInterface,
|
|
|
|
d3d12_command_queue_SetName,
|
|
|
|
/* ID3D12DeviceChild methods */
|
|
|
|
d3d12_command_queue_GetDevice,
|
|
|
|
/* ID3D12CommandQueue methods */
|
|
|
|
d3d12_command_queue_UpdateTileMappings,
|
|
|
|
d3d12_command_queue_CopyTileMappings,
|
|
|
|
d3d12_command_queue_ExecuteCommandLists,
|
|
|
|
d3d12_command_queue_SetMarker,
|
|
|
|
d3d12_command_queue_BeginEvent,
|
|
|
|
d3d12_command_queue_EndEvent,
|
|
|
|
d3d12_command_queue_Signal,
|
|
|
|
d3d12_command_queue_Wait,
|
|
|
|
d3d12_command_queue_GetTimestampFrequency,
|
|
|
|
d3d12_command_queue_GetClockCalibration,
|
|
|
|
d3d12_command_queue_GetDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void d3d12_command_queue_init(struct d3d12_command_queue *queue,
|
|
|
|
struct d3d12_device *device, const D3D12_COMMAND_QUEUE_DESC *desc)
|
|
|
|
{
|
|
|
|
queue->ID3D12CommandQueue_iface.lpVtbl = &d3d12_command_queue_vtbl;
|
|
|
|
queue->refcount = 1;
|
|
|
|
|
|
|
|
queue->desc = *desc;
|
|
|
|
if (!queue->desc.NodeMask)
|
|
|
|
queue->desc.NodeMask = 0x1;
|
|
|
|
|
|
|
|
queue->device = device;
|
|
|
|
ID3D12Device_AddRef(&device->ID3D12Device_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT d3d12_command_queue_create(struct d3d12_device *device,
|
|
|
|
const D3D12_COMMAND_QUEUE_DESC *desc, struct d3d12_command_queue **queue)
|
|
|
|
{
|
|
|
|
struct d3d12_command_queue *object;
|
|
|
|
|
|
|
|
if (!(object = vkd3d_malloc(sizeof(*object))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
d3d12_command_queue_init(object, device, desc);
|
|
|
|
|
|
|
|
TRACE("Created command queue %p.\n", object);
|
|
|
|
|
|
|
|
*queue = object;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|