2019-04-22 15:58:27 +02:00
|
|
|
#include "common.h"
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkCreateDescriptorPool(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
2019-04-30 23:00:39 +02:00
|
|
|
const VkDescriptorPoolCreateInfo* pCreateInfo,
|
|
|
|
const VkAllocationCallbacks* pAllocator,
|
|
|
|
VkDescriptorPool* pDescriptorPool)
|
2019-04-22 15:58:27 +02:00
|
|
|
{
|
2019-04-30 23:00:39 +02:00
|
|
|
assert(device);
|
|
|
|
assert(pCreateInfo);
|
|
|
|
|
|
|
|
_descriptorPool* dp = ALLOCATE(sizeof(_descriptorPool), 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
|
|
|
|
|
|
if(!dp)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t imageDescriptorCount = 0, bufferDescriptorCount = 0, texelBufferDescriptorCount = 0;
|
|
|
|
for(uint32_t c = 0; c < pCreateInfo->poolSizeCount; ++c)
|
|
|
|
{
|
|
|
|
switch(pCreateInfo->pPoolSizes[c].type)
|
|
|
|
{
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
|
2020-02-20 21:45:43 +01:00
|
|
|
imageDescriptorCount += pCreateInfo->pPoolSizes[c].descriptorCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
break;
|
|
|
|
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:
|
2020-02-20 21:45:43 +01:00
|
|
|
bufferDescriptorCount += pCreateInfo->pPoolSizes[c].descriptorCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
break;
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
|
2020-02-20 21:45:43 +01:00
|
|
|
texelBufferDescriptorCount += pCreateInfo->pPoolSizes[c].descriptorCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 00:30:52 +02:00
|
|
|
dp->freeAble = pCreateInfo->flags & VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
|
2019-04-30 23:00:39 +02:00
|
|
|
|
2019-05-05 18:33:13 +02:00
|
|
|
void* dsmem = ALLOCATE(sizeof(_descriptorSet)*pCreateInfo->maxSets, 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
2019-04-30 23:00:39 +02:00
|
|
|
if(!dsmem)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
dp->descriptorSetPA = createPoolAllocator(dsmem, sizeof(_descriptorSet), sizeof(_descriptorSet) * pCreateInfo->maxSets);
|
|
|
|
dp->imageDescriptorCPA = 0;
|
|
|
|
dp->bufferDescriptorCPA = 0;
|
|
|
|
dp->texelBufferDescriptorCPA = 0;
|
|
|
|
|
2020-03-05 22:18:26 +01:00
|
|
|
// fprintf(stderr, "imageDescriptorCount %u\n", imageDescriptorCount);
|
|
|
|
// fprintf(stderr, "bufferDescriptorCount %u\n", bufferDescriptorCount);
|
|
|
|
// fprintf(stderr, "texelBufferDescriptorCount %u\n", texelBufferDescriptorCount);
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t mapElemBlockSize = sizeof(mapElem);
|
|
|
|
uint32_t mapBufSize = mapElemBlockSize * (imageDescriptorCount + bufferDescriptorCount + texelBufferDescriptorCount);
|
|
|
|
void* memem = ALLOCATE(mapBufSize, 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
2019-05-02 23:00:23 +02:00
|
|
|
if(!memem)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
2020-03-05 22:18:26 +01:00
|
|
|
dp->mapElementCPA = createConsecutivePoolAllocator(memem, mapElemBlockSize, mapBufSize);
|
2019-05-02 23:00:23 +02:00
|
|
|
|
2019-04-30 23:00:39 +02:00
|
|
|
if(imageDescriptorCount > 0)
|
|
|
|
{
|
|
|
|
dp->imageDescriptorCPA = ALLOCATE(sizeof(ConsecutivePoolAllocator), 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
|
|
if(!dp)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
2020-03-05 22:18:26 +01:00
|
|
|
uint32_t blockSize = sizeof(_descriptorImage);
|
|
|
|
void* mem = ALLOCATE(blockSize*imageDescriptorCount, 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
2019-04-30 23:00:39 +02:00
|
|
|
if(!mem)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
2020-03-05 22:18:26 +01:00
|
|
|
*dp->imageDescriptorCPA = createConsecutivePoolAllocator(mem, blockSize, blockSize * imageDescriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(bufferDescriptorCount > 0)
|
|
|
|
{
|
|
|
|
dp->bufferDescriptorCPA = ALLOCATE(sizeof(ConsecutivePoolAllocator), 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
|
|
if(!dp)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
2020-03-05 22:18:26 +01:00
|
|
|
uint32_t blockSize = sizeof(_descriptorBuffer);
|
|
|
|
void* mem = ALLOCATE(blockSize*bufferDescriptorCount, 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
2019-04-30 23:00:39 +02:00
|
|
|
if(!mem)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
2020-03-05 22:18:26 +01:00
|
|
|
*dp->bufferDescriptorCPA = createConsecutivePoolAllocator(mem, blockSize, blockSize * bufferDescriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(texelBufferDescriptorCount > 0)
|
|
|
|
{
|
|
|
|
dp->texelBufferDescriptorCPA = ALLOCATE(sizeof(ConsecutivePoolAllocator), 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
|
|
if(!dp)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
2020-03-05 22:18:26 +01:00
|
|
|
uint32_t blockSize = sizeof(_descriptorBuffer);
|
|
|
|
void* mem = ALLOCATE(blockSize*texelBufferDescriptorCount, 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
2019-04-30 23:00:39 +02:00
|
|
|
if(!mem)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
2020-03-05 22:18:26 +01:00
|
|
|
*dp->texelBufferDescriptorCPA = createConsecutivePoolAllocator(mem, blockSize, blockSize * texelBufferDescriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
2019-08-19 23:12:51 +02:00
|
|
|
*pDescriptorPool = dp;
|
|
|
|
|
2019-04-30 23:00:39 +02:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkAllocateDescriptorSets(
|
2019-04-30 23:00:39 +02:00
|
|
|
VkDevice device,
|
|
|
|
const VkDescriptorSetAllocateInfo* pAllocateInfo,
|
|
|
|
VkDescriptorSet* pDescriptorSets)
|
|
|
|
{
|
|
|
|
assert(device);
|
|
|
|
|
|
|
|
_descriptorPool* dp = pAllocateInfo->descriptorPool;
|
|
|
|
|
|
|
|
for(uint32_t c = 0; c < pAllocateInfo->descriptorSetCount; ++c)
|
|
|
|
{
|
|
|
|
_descriptorSet* ds = poolAllocate(&dp->descriptorSetPA);
|
|
|
|
pDescriptorSets[c] = ds;
|
|
|
|
|
|
|
|
_descriptorSetLayout* dsl = pAllocateInfo->pSetLayouts[c];
|
|
|
|
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO dsl flags
|
2019-04-30 23:00:39 +02:00
|
|
|
|
|
|
|
uint32_t imageDescriptorCount = 0, bufferDescriptorCount = 0, texelBufferDescriptorCount = 0;
|
|
|
|
for(uint32_t d = 0; d < dsl->bindingsCount; ++d)
|
|
|
|
{
|
|
|
|
switch(dsl->bindings[d].descriptorType)
|
|
|
|
{
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
|
2020-02-20 21:45:43 +01:00
|
|
|
imageDescriptorCount += dsl->bindings[d].descriptorCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
break;
|
|
|
|
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:
|
2020-02-20 21:45:43 +01:00
|
|
|
bufferDescriptorCount += dsl->bindings[d].descriptorCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
break;
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
|
2020-02-20 21:45:43 +01:00
|
|
|
texelBufferDescriptorCount += dsl->bindings[d].descriptorCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ds->imageDescriptorsCount = imageDescriptorCount;
|
|
|
|
ds->bufferDescriptorsCount = bufferDescriptorCount;
|
|
|
|
ds->texelBufferDescriptorsCount = texelBufferDescriptorCount;
|
|
|
|
|
|
|
|
ds->imageDescriptors = 0;
|
|
|
|
ds->bufferDescriptors = 0;
|
|
|
|
ds->texelBufferDescriptors = 0;
|
|
|
|
|
2020-03-05 22:18:26 +01:00
|
|
|
// fprintf(stderr, "imageDescriptorCount %u\n", imageDescriptorCount);
|
|
|
|
// fprintf(stderr, "bufferDescriptorCount %u\n", bufferDescriptorCount);
|
|
|
|
// fprintf(stderr, "texelBufferDescriptorCount %u\n", texelBufferDescriptorCount);
|
|
|
|
|
2019-04-30 23:00:39 +02:00
|
|
|
if(imageDescriptorCount > 0)
|
|
|
|
{
|
|
|
|
ds->imageDescriptors = consecutivePoolAllocate(dp->imageDescriptorCPA, imageDescriptorCount);
|
2019-05-02 23:00:23 +02:00
|
|
|
ds->imageBindingMap = createMap(consecutivePoolAllocate(&dp->mapElementCPA, imageDescriptorCount), imageDescriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 23:00:23 +02:00
|
|
|
if(bufferDescriptorCount > 0)
|
2019-04-30 23:00:39 +02:00
|
|
|
{
|
|
|
|
ds->bufferDescriptors = consecutivePoolAllocate(dp->bufferDescriptorCPA, bufferDescriptorCount);
|
2019-05-02 23:00:23 +02:00
|
|
|
ds->bufferBindingMap = createMap(consecutivePoolAllocate(&dp->mapElementCPA, bufferDescriptorCount), bufferDescriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 23:00:23 +02:00
|
|
|
if(texelBufferDescriptorCount > 0)
|
2019-04-30 23:00:39 +02:00
|
|
|
{
|
|
|
|
ds->texelBufferDescriptors = consecutivePoolAllocate(dp->texelBufferDescriptorCPA, texelBufferDescriptorCount);
|
2019-05-02 23:00:23 +02:00
|
|
|
ds->texelBufferBindingMap = createMap(consecutivePoolAllocate(&dp->mapElementCPA, texelBufferDescriptorCount), texelBufferDescriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO immutable samplers
|
|
|
|
|
|
|
|
uint32_t imageDescriptorCounter = 0, bufferDescriptorCounter = 0, texelBufferDescriptorCounter = 0;
|
|
|
|
for(uint32_t d = 0; d < dsl->bindingsCount; ++d)
|
|
|
|
{
|
|
|
|
switch(dsl->bindings[d].descriptorType)
|
|
|
|
{
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
|
2019-05-02 23:00:23 +02:00
|
|
|
setMapElement(&ds->imageBindingMap, dsl->bindings[d].binding, &ds->imageDescriptors[imageDescriptorCounter]);
|
2019-04-30 23:00:39 +02:00
|
|
|
ds->imageDescriptors[imageDescriptorCounter].count = dsl->bindings[d].descriptorCount;
|
|
|
|
ds->imageDescriptors[imageDescriptorCounter].type = dsl->bindings[d].descriptorType;
|
|
|
|
ds->imageDescriptors[imageDescriptorCounter].stageFlags = dsl->bindings[d].stageFlags;
|
|
|
|
imageDescriptorCounter += dsl->bindings[d].descriptorCount;
|
|
|
|
break;
|
|
|
|
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:
|
2019-05-02 23:00:23 +02:00
|
|
|
setMapElement(&ds->bufferBindingMap, dsl->bindings[d].binding, &ds->bufferDescriptors[bufferDescriptorCounter]);
|
2019-08-26 19:25:58 +02:00
|
|
|
ds->bufferDescriptors[bufferDescriptorCounter].count = dsl->bindings[d].descriptorCount;
|
|
|
|
ds->bufferDescriptors[bufferDescriptorCounter].type = dsl->bindings[d].descriptorType;
|
|
|
|
ds->bufferDescriptors[bufferDescriptorCounter].stageFlags = dsl->bindings[d].stageFlags;
|
2019-04-30 23:00:39 +02:00
|
|
|
bufferDescriptorCounter += dsl->bindings[d].descriptorCount;
|
|
|
|
break;
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
|
2019-05-02 23:00:23 +02:00
|
|
|
setMapElement(&ds->texelBufferBindingMap, dsl->bindings[d].binding, &ds->texelBufferDescriptors[texelBufferDescriptorCounter]);
|
2019-08-26 19:25:58 +02:00
|
|
|
ds->texelBufferDescriptors[texelBufferDescriptorCounter].count = dsl->bindings[d].descriptorCount;
|
|
|
|
ds->texelBufferDescriptors[texelBufferDescriptorCounter].type = dsl->bindings[d].descriptorType;
|
|
|
|
ds->texelBufferDescriptors[texelBufferDescriptorCounter].stageFlags = dsl->bindings[d].stageFlags;
|
2019-04-30 23:00:39 +02:00
|
|
|
texelBufferDescriptorCounter += dsl->bindings[d].descriptorCount;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-22 15:58:27 +02:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkCreateDescriptorSetLayout(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
const VkDescriptorSetLayoutCreateInfo* pCreateInfo,
|
|
|
|
const VkAllocationCallbacks* pAllocator,
|
|
|
|
VkDescriptorSetLayout* pSetLayout)
|
|
|
|
{
|
2019-04-30 23:00:39 +02:00
|
|
|
assert(device);
|
|
|
|
assert(pCreateInfo);
|
|
|
|
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO flags
|
|
|
|
|
2019-04-30 23:00:39 +02:00
|
|
|
_descriptorSetLayout* dsl = ALLOCATE(sizeof(_descriptorSetLayout), 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
|
|
|
|
|
|
if(!dsl)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
2019-05-05 18:33:13 +02:00
|
|
|
dsl->bindings = ALLOCATE(sizeof(VkDescriptorSetLayoutBinding)*pCreateInfo->bindingCount, 1, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
2019-04-30 23:00:39 +02:00
|
|
|
|
|
|
|
if(!dsl->bindings)
|
|
|
|
{
|
|
|
|
return VK_ERROR_OUT_OF_HOST_MEMORY;
|
|
|
|
}
|
|
|
|
|
2019-08-19 23:12:51 +02:00
|
|
|
memcpy(dsl->bindings, pCreateInfo->pBindings, sizeof(VkDescriptorSetLayoutBinding)*pCreateInfo->bindingCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
|
|
|
|
dsl->flags = pCreateInfo->flags;
|
2019-08-19 23:12:51 +02:00
|
|
|
dsl->bindingsCount = pCreateInfo->bindingCount;
|
2019-04-30 23:00:39 +02:00
|
|
|
|
|
|
|
*pSetLayout = dsl;
|
|
|
|
|
2019-04-22 15:58:27 +02:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkUpdateDescriptorSets(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
2019-04-30 23:00:39 +02:00
|
|
|
uint32_t descriptorWriteCount,
|
|
|
|
const VkWriteDescriptorSet* pDescriptorWrites,
|
|
|
|
uint32_t descriptorCopyCount,
|
|
|
|
const VkCopyDescriptorSet* pDescriptorCopies)
|
|
|
|
{
|
|
|
|
assert(device);
|
|
|
|
|
|
|
|
for(uint32_t c = 0; c < descriptorWriteCount; ++c)
|
|
|
|
{
|
|
|
|
_descriptorSet* ds = pDescriptorWrites[c].dstSet;
|
|
|
|
|
|
|
|
switch(pDescriptorWrites[c].descriptorType)
|
|
|
|
{
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_IMAGE:
|
|
|
|
case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT:
|
|
|
|
{
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorImage* di = getMapElement(ds->imageBindingMap, pDescriptorWrites[c].dstBinding);
|
2019-04-30 23:00:39 +02:00
|
|
|
di += pDescriptorWrites[c].dstArrayElement;
|
|
|
|
for(uint32_t d = 0; d < pDescriptorWrites[c].descriptorCount; ++d, di++)
|
|
|
|
{
|
|
|
|
di->imageLayout = pDescriptorWrites[c].pImageInfo[d].imageLayout;
|
|
|
|
di->imageView = pDescriptorWrites[c].pImageInfo[d].imageView;
|
|
|
|
di->sampler = pDescriptorWrites[c].pImageInfo[d].sampler;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
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:
|
|
|
|
{
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorBuffer* di = getMapElement(ds->bufferBindingMap, pDescriptorWrites[c].dstBinding);
|
2019-04-30 23:00:39 +02:00
|
|
|
di += pDescriptorWrites[c].dstArrayElement;
|
|
|
|
for(uint32_t d = 0; d < pDescriptorWrites[c].descriptorCount; ++d, di++)
|
|
|
|
{
|
|
|
|
di->buffer = pDescriptorWrites[c].pBufferInfo[d].buffer;
|
|
|
|
di->offset = pDescriptorWrites[c].pBufferInfo[d].offset;
|
|
|
|
di->range = pDescriptorWrites[c].pBufferInfo[d].range;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER:
|
|
|
|
case VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER:
|
|
|
|
{
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorTexelBuffer* di = getMapElement(ds->texelBufferBindingMap, pDescriptorWrites[c].dstBinding);
|
2019-04-30 23:00:39 +02:00
|
|
|
di += pDescriptorWrites[c].dstArrayElement;
|
|
|
|
for(uint32_t d = 0; d < pDescriptorWrites[c].descriptorCount; ++d, di++)
|
|
|
|
{
|
|
|
|
di->bufferView = pDescriptorWrites[c].pTexelBufferView[d];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(uint32_t c = 0; c < descriptorCopyCount; ++c)
|
|
|
|
{
|
|
|
|
_descriptorSet* sds = pDescriptorCopies[c].srcSet;
|
|
|
|
_descriptorSet* dds = pDescriptorCopies[c].dstSet;
|
|
|
|
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorImage* sdi = getMapElement(sds->imageBindingMap, pDescriptorCopies[c].srcBinding);
|
|
|
|
if(sdi)
|
2019-04-30 23:00:39 +02:00
|
|
|
{
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorImage* ddi = getMapElement(dds->imageBindingMap, pDescriptorCopies[c].dstBinding);
|
|
|
|
sdi += pDescriptorCopies[c].srcArrayElement;
|
|
|
|
ddi += pDescriptorCopies[c].dstArrayElement;
|
|
|
|
memcpy(ddi, sdi, sizeof(_descriptorImage) * pDescriptorCopies[c].descriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorBuffer* sdb = getMapElement(sds->bufferBindingMap, pDescriptorCopies[c].srcBinding);
|
|
|
|
if(sdb)
|
2019-04-30 23:00:39 +02:00
|
|
|
{
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorBuffer* ddb = getMapElement(dds->bufferBindingMap, pDescriptorCopies[c].dstBinding);
|
|
|
|
sdb += pDescriptorCopies[c].srcArrayElement;
|
|
|
|
ddb += pDescriptorCopies[c].dstArrayElement;
|
|
|
|
memcpy(ddb, sdb, sizeof(_descriptorBuffer) * pDescriptorCopies[c].descriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorTexelBuffer* sdtb = getMapElement(sds->texelBufferBindingMap, pDescriptorCopies[c].srcBinding);
|
|
|
|
if(sdtb)
|
2019-04-30 23:00:39 +02:00
|
|
|
{
|
2019-05-02 23:00:23 +02:00
|
|
|
_descriptorTexelBuffer* ddtb = getMapElement(dds->texelBufferBindingMap, pDescriptorCopies[c].dstBinding);
|
|
|
|
sdtb += pDescriptorCopies[c].srcArrayElement;
|
|
|
|
ddtb += pDescriptorCopies[c].dstArrayElement;
|
|
|
|
memcpy(ddtb, sdtb, sizeof(_descriptorTexelBuffer) * pDescriptorCopies[c].descriptorCount);
|
2019-04-30 23:00:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkResetDescriptorPool(
|
2019-04-30 23:00:39 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkDescriptorPool descriptorPool,
|
|
|
|
VkDescriptorPoolResetFlags flags)
|
2019-04-22 15:58:27 +02:00
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkDestroyDescriptorPool(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkDescriptorPool descriptorPool,
|
|
|
|
const VkAllocationCallbacks* pAllocator)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkCmdBindDescriptorSets(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkCommandBuffer commandBuffer,
|
|
|
|
VkPipelineBindPoint pipelineBindPoint,
|
|
|
|
VkPipelineLayout layout,
|
|
|
|
uint32_t firstSet,
|
|
|
|
uint32_t descriptorSetCount,
|
|
|
|
const VkDescriptorSet* pDescriptorSets,
|
|
|
|
uint32_t dynamicOffsetCount,
|
|
|
|
const uint32_t* pDynamicOffsets)
|
|
|
|
{
|
2019-07-08 22:10:22 +02:00
|
|
|
//TODO dynamic offsets
|
2019-04-22 15:58:27 +02:00
|
|
|
|
2019-07-08 22:10:22 +02:00
|
|
|
assert(commandBuffer);
|
|
|
|
assert(layout);
|
|
|
|
assert(pDescriptorSets);
|
|
|
|
|
|
|
|
_commandBuffer* cb = commandBuffer;
|
|
|
|
|
|
|
|
//use pipeline layout's memory to store what is bound...
|
|
|
|
|
|
|
|
_pipelineLayout* pl = pipelineBindPoint == VK_PIPELINE_BIND_POINT_GRAPHICS ? cb->graphicsPipeline->layout : cb->computePipeline->layout;
|
|
|
|
assert(firstSet + descriptorSetCount <= pl->setLayoutCount);
|
|
|
|
|
|
|
|
for(uint32_t c = firstSet; c < firstSet + descriptorSetCount; ++c)
|
|
|
|
{
|
|
|
|
setMapElement(&pl->descriptorSetBindingMap, c, pDescriptorSets[c]);
|
|
|
|
}
|
2019-09-02 23:37:42 +02:00
|
|
|
|
|
|
|
cb->descriptorSetDirty = 1;
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkDestroyDescriptorSetLayout(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkDescriptorSetLayout descriptorSetLayout,
|
|
|
|
const VkAllocationCallbacks* pAllocator)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkFreeDescriptorSets(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkDescriptorPool descriptorPool,
|
|
|
|
uint32_t descriptorSetCount,
|
|
|
|
const VkDescriptorSet* pDescriptorSets)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
assert(device);
|
|
|
|
assert(descriptorPool);
|
|
|
|
|
|
|
|
_descriptorPool* dp = descriptorPool;
|
|
|
|
assert(dp->freeAble);
|
|
|
|
|
|
|
|
//TODO
|
|
|
|
|
2019-04-22 15:58:27 +02:00
|
|
|
return VK_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR VkResult VKAPI_CALL rpi_vkCreateDescriptorUpdateTemplate(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo,
|
|
|
|
const VkAllocationCallbacks* pAllocator,
|
|
|
|
VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkDestroyDescriptorUpdateTemplate(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkDescriptorUpdateTemplate descriptorUpdateTemplate,
|
|
|
|
const VkAllocationCallbacks* pAllocator)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkUpdateDescriptorSetWithTemplate(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
VkDescriptorSet descriptorSet,
|
|
|
|
VkDescriptorUpdateTemplate descriptorUpdateTemplate,
|
|
|
|
const void* pData)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-30 00:52:21 +02:00
|
|
|
VKAPI_ATTR void VKAPI_CALL rpi_vkGetDescriptorSetLayoutSupport(
|
2019-04-22 15:58:27 +02:00
|
|
|
VkDevice device,
|
|
|
|
const VkDescriptorSetLayoutCreateInfo* pCreateInfo,
|
|
|
|
VkDescriptorSetLayoutSupport* pSupport)
|
|
|
|
{
|
2019-09-08 00:30:52 +02:00
|
|
|
//TODO
|
2019-04-22 15:58:27 +02:00
|
|
|
}
|