Skip to content

Commit

Permalink
Formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alelenv committed Jan 31, 2025
1 parent c14c1db commit b87c754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/val/validate_extensions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,8 @@ spv_result_t ValidateExtension(ValidationState_t& _, const Instruction* inst) {
ExtensionToString(kSPV_KHR_workgroup_memory_explicit_layout) ||
extension == ExtensionToString(kSPV_EXT_mesh_shader) ||
extension == ExtensionToString(kSPV_NV_shader_invocation_reorder) ||
extension == ExtensionToString(kSPV_NV_cluster_acceleration_structure)) {
extension ==
ExtensionToString(kSPV_NV_cluster_acceleration_structure)) {
return _.diag(SPV_ERROR_WRONG_VERSION, inst)
<< extension << " extension requires SPIR-V version 1.4 or later.";
}
Expand Down
1 change: 0 additions & 1 deletion test/val/val_ray_tracing_reorder_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,6 @@ TEST_F(ValidateRayTracingReorderNV,
}

TEST_F(ValidateRayTracingReorderNV, ClusterASNV) {

const std::string cap = R"(
OpCapability RayTracingClusterAccelerationStructureNV
)";
Expand Down

0 comments on commit b87c754

Please sign in to comment.