[host] dxgi: update to make use of comRef (part 1 of 2)

This commit is contained in:
Geoffrey McRae
2023-10-27 17:34:34 +11:00
parent 69b984aa2c
commit b94166177f
4 changed files with 187 additions and 232 deletions

View File

@@ -44,6 +44,11 @@ inline static size_t vector_size(Vector * vector)
return vector->size;
}
inline static size_t vector_capacity(Vector * vector)
{
return vector->capacity;
}
inline static void * vector_data(Vector * vector)
{
return vector->data;