Skip to content
Snippets Groups Projects

Resolve "Complete Voxelization"

Merged Ghost User requested to merge 81-complete-voxelization into develop
Files
18
@@ -10,9 +10,11 @@ namespace vkcv {
@@ -10,9 +10,11 @@ namespace vkcv {
};
};
struct StorageImageDescriptorWrite {
struct StorageImageDescriptorWrite {
inline StorageImageDescriptorWrite(uint32_t binding, ImageHandle image) : binding(binding), image(image) {};
inline StorageImageDescriptorWrite(uint32_t binding, ImageHandle image, uint32_t mipLevel = 0)
 
: binding(binding), image(image), mipLevel(mipLevel) {};
uint32_t binding;
uint32_t binding;
ImageHandle image;
ImageHandle image;
 
uint32_t mipLevel;
};
};
struct UniformBufferDescriptorWrite {
struct UniformBufferDescriptorWrite {
Loading