From: Mikko Rasa Date: Thu, 1 Dec 2016 11:29:29 +0000 (+0200) Subject: Upgrade NodePtr to RefPtr X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=57c1139e4fe21aeca7118b18eb3ba6fa43d7bf90;hp=57c1139e4fe21aeca7118b18eb3ba6fa43d7bf90;p=libs%2Fgl.git Upgrade NodePtr to RefPtr Allows Nodes to be moved from one Block to another without copying them. When targeting GLSL 1.30 LegacyConverter has a sequence where it flattens an interface block and later checks the type of those variables through their declaration pointer. This caused memory errors because the original nodes were destroyed in the flatten operation. ---