diff --git a/src/writer/glsl/generator_impl.cc b/src/writer/glsl/generator_impl.cc index 6c83e58d98..dc6a05ad32 100644 --- a/src/writer/glsl/generator_impl.cc +++ b/src/writer/glsl/generator_impl.cc @@ -2110,7 +2110,7 @@ bool GeneratorImpl::EmitLoop(const ast::LoopStatement* stmt) { if (!EmitStatements(stmt->body->statements)) { return false; } - if (!emit_continuing()) { + if (!emit_continuing_()) { return false; } } @@ -2190,7 +2190,7 @@ bool GeneratorImpl::EmitForLoop(const ast::ForLoopStatement* stmt) { return false; } - if (!emit_continuing()) { + if (!emit_continuing_()) { return false; } } else { diff --git a/src/writer/hlsl/generator_impl.cc b/src/writer/hlsl/generator_impl.cc index 9108f9f487..09f946c708 100644 --- a/src/writer/hlsl/generator_impl.cc +++ b/src/writer/hlsl/generator_impl.cc @@ -3203,7 +3203,7 @@ bool GeneratorImpl::EmitLoop(const ast::LoopStatement* stmt) { if (!EmitStatements(stmt->body->statements)) { return false; } - if (!emit_continuing()) { + if (!emit_continuing_()) { return false; } } @@ -3283,7 +3283,7 @@ bool GeneratorImpl::EmitForLoop(const ast::ForLoopStatement* stmt) { return false; } - if (!emit_continuing()) { + if (!emit_continuing_()) { return false; } } else { diff --git a/src/writer/msl/generator_impl.cc b/src/writer/msl/generator_impl.cc index a4f8b72705..fffd3715e8 100644 --- a/src/writer/msl/generator_impl.cc +++ b/src/writer/msl/generator_impl.cc @@ -1827,7 +1827,7 @@ bool GeneratorImpl::EmitLoop(const ast::LoopStatement* stmt) { if (!EmitStatements(stmt->body->statements)) { return false; } - if (!emit_continuing()) { + if (!emit_continuing_()) { return false; } } @@ -1908,7 +1908,7 @@ bool GeneratorImpl::EmitForLoop(const ast::ForLoopStatement* stmt) { return false; } - if (!emit_continuing()) { + if (!emit_continuing_()) { return false; } } else {