added vulkan device and queues creation
This commit is contained in:
parent
89edee7249
commit
6c31a3ce27
20 changed files with 253 additions and 18 deletions
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
struct vector *vector_init(usize size, usize element_size)
|
||||
{
|
||||
if (size == 0) size = 1;
|
||||
struct vector *vector = (struct vector *) malloc(sizeof(struct vector));
|
||||
vector->length = 0;
|
||||
vector->size = size;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue