Skip to content
Snippets Groups Projects

Resolve "Indirect Dispatch"

Merged Ghost User requested to merge 106-indirect-dispatch into develop
Compare and
59 files
+ 2337
126
Compare changes
  • Side-by-side
  • Inline
Files
59
+ 2
2
@@ -76,8 +76,8 @@ namespace vkcv {
@@ -76,8 +76,8 @@ namespace vkcv {
{}
{}
[[nodiscard]]
[[nodiscard]]
static Buffer<T> create(BufferManager* manager, BufferType type, size_t count, BufferMemoryType memoryType) {
static Buffer<T> create(BufferManager* manager, BufferType type, size_t count, BufferMemoryType memoryType, bool supportIndirect) {
return Buffer<T>(manager, manager->createBuffer(type, count * sizeof(T), memoryType), type, count, memoryType);
return Buffer<T>(manager, manager->createBuffer(type, count * sizeof(T), memoryType, supportIndirect), type, count, memoryType);
}
}
};
};
Loading