Skip to content

Commit

Permalink
Fix wrong yaml output.
Browse files Browse the repository at this point in the history
  • Loading branch information
shangjiaxuan committed Jul 12, 2023
1 parent 2194341 commit 62b0cbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/output_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1500,10 +1500,10 @@ void StreamWriteEntryPoint(std::ostream& os, SpvReflectEvaluation* p_eval, const
if (obj.shader_stage == SPV_REFLECT_SHADER_STAGE_COMPUTE_BIT) {
os << "\n";
if (entry_flag & 2) {
os << "local size : ";
os << "local size hint : ";
}
else {
os << "local size hint : ";
os << "local size : ";
}
if (entry_flag & 4) {
const SpvReflectValue* val;
Expand Down

0 comments on commit 62b0cbe

Please sign in to comment.