Home | History | Annotate | Download | only in glshared

Lines Matching defs:Cond

60 class Cond
69 Cond (ConstCond cond);
70 explicit Cond (const std::string& name, bool negate = true);
71 bool operator== (const Cond& other) const { return m_negate == other.m_negate && m_name == other.m_name; }
72 bool operator!= (const Cond& other) const { return !(*this == other); }
99 const Cond& cond = Cond::COND_ALWAYS,
105 const Cond& getCondition (void) const { return m_cond; }
112 Cond m_cond;