Lines Matching refs:entrypoints
745 for (unsigned i = 0; i < ARRAY_SIZE(instance->dispatch.entrypoints); i++) {
746 /* Vulkan requires that entrypoints for extensions which have not been
751 instance->dispatch.entrypoints[i] = NULL;
753 instance->dispatch.entrypoints[i] =
754 anv_instance_dispatch_table.entrypoints[i];
758 for (unsigned i = 0; i < ARRAY_SIZE(instance->device_dispatch.entrypoints); i++) {
759 /* Vulkan requires that entrypoints for extensions which have not been
764 instance->device_dispatch.entrypoints[i] = NULL;
766 instance->device_dispatch.entrypoints[i] =
767 anv_device_dispatch_table.entrypoints[i];
1782 return instance->dispatch.entrypoints[idx];
1786 return instance->device_dispatch.entrypoints[idx];
1820 return device->dispatch.entrypoints[idx];
1988 for (unsigned i = 0; i < ARRAY_SIZE(device->dispatch.entrypoints); i++) {
1989 /* Vulkan requires that entrypoints for extensions which have not been
1995 device->dispatch.entrypoints[i] = NULL;
1996 } else if (genX_table->entrypoints[i]) {
1997 device->dispatch.entrypoints[i] = genX_table->entrypoints[i];
1999 device->dispatch.entrypoints[i] =
2000 anv_device_dispatch_table.entrypoints[i];