Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:m_type

67 			: m_type(DE_NULL)
73 : m_type(new VariableType(type))
80 delete m_type;
84 : m_type(DE_NULL)
87 if (other.m_type)
88 m_type = new VariableType(*other.m_type);
96 delete m_type;
98 m_type = DE_NULL;
101 if (other.m_type)
102 m_type = new VariableType(*other.m_type);
111 if (!!m_type != !!other.m_type)
113 if (m_type && *m_type != *other.m_type)
123 const VariableType& getType (void) const { return *m_type; }
127 VariableType* m_type;