Home | History | Annotate | Download | only in graphics

Lines Matching refs:m_height

53     FloatSize() : m_width(0), m_height(0) { }
54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
60 float height() const { return m_height; }
63 void setHeight(float height) { m_height = height; }
65 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
70 m_height > other.m_height ? m_height : other.m_height);
76 m_height < other.m_height ? m_height : other.m_height);
91 float m_width, m_height;