Skip to content
Snippets Groups Projects

Resolve "Basic voxelization"

Merged Ghost User requested to merge 70-basic-voxelization into develop
Compare and Show latest version
10 files
+ 73
6
Compare changes
  • Side-by-side
  • Inline
Files
10
@@ -30,7 +30,8 @@ namespace vkcv {
const PassHandle &passHandle,
const std::vector<VertexAttribute> &vertexAttributes,
const std::vector<vk::DescriptorSetLayout> &descriptorLayouts,
bool useDynamicViewport);
bool useDynamicViewport,
bool useConservativeRasterization = false);
ShaderProgram m_ShaderProgram;
uint32_t m_Height;
@@ -39,7 +40,7 @@ namespace vkcv {
std::vector<VertexAttribute> m_VertexAttributes;
std::vector<vk::DescriptorSetLayout> m_DescriptorLayouts;
bool m_UseDynamicViewport;
bool m_UseConservativeRasterization;
};
}
\ No newline at end of file
Loading