From fdbd0ebab15a94b9ff8c4bc6e77297ad008e2557 Mon Sep 17 00:00:00 2001 From: He Dejing <hedejin95@gmail.com> Date: Tue, 3 Oct 2017 02:41:23 +0800 Subject: [PATCH] Add getAsLoopNode() method for Loop node follow local conventions of spaces --- glslang/Include/intermediate.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/glslang/Include/intermediate.h b/glslang/Include/intermediate.h index 4a2b53047..f5356db69 100644 --- a/glslang/Include/intermediate.h +++ b/glslang/Include/intermediate.h @@ -790,6 +790,7 @@ class TIntermBranch; class TIntermTyped; class TIntermMethod; class TIntermSymbol; +class TIntermLoop; } // end namespace glslang @@ -817,6 +818,7 @@ public: virtual glslang::TIntermMethod* getAsMethodNode() { return 0; } virtual glslang::TIntermSymbol* getAsSymbolNode() { return 0; } virtual glslang::TIntermBranch* getAsBranchNode() { return 0; } + virtual glslang::TIntermLoop* getAsLoopNode() { return 0; } virtual const glslang::TIntermTyped* getAsTyped() const { return 0; } virtual const glslang::TIntermOperator* getAsOperator() const { return 0; } @@ -829,6 +831,7 @@ public: virtual const glslang::TIntermMethod* getAsMethodNode() const { return 0; } virtual const glslang::TIntermSymbol* getAsSymbolNode() const { return 0; } virtual const glslang::TIntermBranch* getAsBranchNode() const { return 0; } + virtual const glslang::TIntermLoop* getAsLoopNode() const { return 0; } virtual ~TIntermNode() { } protected: @@ -910,6 +913,8 @@ public: control(ELoopControlNone) { } + virtual TIntermLoop* getAsLoopNode() { return this; } + virtual const TIntermLoop* getAsLoopNode() const { return this; } virtual void traverse(TIntermTraverser*); TIntermNode* getBody() const { return body; } TIntermTyped* getTest() const { return test; } -- GitLab