Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | // |
michael@0 | 2 | // Copyright (c) 2002-2011 The ANGLE Project Authors. All rights reserved. |
michael@0 | 3 | // Use of this source code is governed by a BSD-style license that can be |
michael@0 | 4 | // found in the LICENSE file. |
michael@0 | 5 | // |
michael@0 | 6 | |
michael@0 | 7 | #ifndef COMPILER_VARIABLE_INFO_H_ |
michael@0 | 8 | #define COMPILER_VARIABLE_INFO_H_ |
michael@0 | 9 | |
michael@0 | 10 | #include "GLSLANG/ShaderLang.h" |
michael@0 | 11 | #include "compiler/intermediate.h" |
michael@0 | 12 | |
michael@0 | 13 | // Provides information about a variable. |
michael@0 | 14 | // It is currently being used to store info about active attribs and uniforms. |
michael@0 | 15 | struct TVariableInfo { |
michael@0 | 16 | TVariableInfo(ShDataType type, int size); |
michael@0 | 17 | TVariableInfo(); |
michael@0 | 18 | |
michael@0 | 19 | TPersistString name; |
michael@0 | 20 | TPersistString mappedName; |
michael@0 | 21 | ShDataType type; |
michael@0 | 22 | int size; |
michael@0 | 23 | }; |
michael@0 | 24 | typedef std::vector<TVariableInfo> TVariableInfoList; |
michael@0 | 25 | |
michael@0 | 26 | // Traverses intermediate tree to collect all attributes and uniforms. |
michael@0 | 27 | class CollectAttribsUniforms : public TIntermTraverser { |
michael@0 | 28 | public: |
michael@0 | 29 | CollectAttribsUniforms(TVariableInfoList& attribs, |
michael@0 | 30 | TVariableInfoList& uniforms, |
michael@0 | 31 | ShHashFunction64 hashFunction); |
michael@0 | 32 | |
michael@0 | 33 | virtual void visitSymbol(TIntermSymbol*); |
michael@0 | 34 | virtual void visitConstantUnion(TIntermConstantUnion*); |
michael@0 | 35 | virtual bool visitBinary(Visit, TIntermBinary*); |
michael@0 | 36 | virtual bool visitUnary(Visit, TIntermUnary*); |
michael@0 | 37 | virtual bool visitSelection(Visit, TIntermSelection*); |
michael@0 | 38 | virtual bool visitAggregate(Visit, TIntermAggregate*); |
michael@0 | 39 | virtual bool visitLoop(Visit, TIntermLoop*); |
michael@0 | 40 | virtual bool visitBranch(Visit, TIntermBranch*); |
michael@0 | 41 | |
michael@0 | 42 | private: |
michael@0 | 43 | TVariableInfoList& mAttribs; |
michael@0 | 44 | TVariableInfoList& mUniforms; |
michael@0 | 45 | |
michael@0 | 46 | ShHashFunction64 mHashFunction; |
michael@0 | 47 | }; |
michael@0 | 48 | |
michael@0 | 49 | #endif // COMPILER_VARIABLE_INFO_H_ |